Files
webextensions-examples/history-deleter/manifest.json
2016-11-18 14:14:25 -08:00

20 lines
469 B
JSON

{
"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"
}