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

18 lines
432 B
JSON

{
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_title": "Favourite colour option"
},
"description": "An example options ui",
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/favourite-colour",
"manifest_version": 2,
"name": "Favourite colour",
"options_ui": {
"page": "options.html"
},
"permissions": ["storage"],
"version": "1.0"
}