Files
webextensions-examples/menu-labelled-open/manifest.json
wbamberg 67e7cfa1f0 Add an example for menus.onShown and menus.refresh() (#343)
* Add an example for menus.onShown and menus.refresh()

* Add version

* Remove unusued variable; use strict
2018-02-28 16:49:04 -08:00

28 lines
488 B
JSON

{
"manifest_version": 2,
"name": "Labelled open",
"description": "Adds a context menu item that labels links with the hostname. Demo of onShown and refresh().",
"version": "1.0",
"applications": {
"gecko": {
"strict_min_version": "60.0a1"
}
},
"icons": {
"16": "icon/label.svg",
"32": "icon/label.svg",
"48": "icon/label.svg"
},
"background": {
"scripts": ["background.js"]
},
"permissions": [
"menus",
"<all_urls>"
]
}