Files
webextensions-examples/history-deleter/manifest.json
T
2016-06-10 16:29:57 -07:00

25 lines
557 B
JSON

{
"applications": {
"gecko": {
"id": "history-deleter@mozilla.com"
}
},
"background": {
"scripts": ["background.js"]
},
"description": "Gives a popup to list and delete history on a domain.",
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/history-deleter",
"page_action": {
"default_title": "History deleter",
"default_popup": "history.html"
},
"permissions": [
"activeTab",
"history",
"tabs"
],
"manifest_version": 2,
"name": "History Deleter",
"version": "1.0"
}