Files
webextensions-examples/dynamic-theme/manifest.json
Andy McKay 07538307f4 add in a dynamic theme example (#230)
* add in a dynamic theme example

* update colour for when image is too small

* some fixups after stupid mistakes
2017-06-15 11:31:58 -07:00

18 lines
382 B
JSON

{
"description": "An example dynamic theme",
"homepage_url": "https://github.com/mdn/webextensions-examples/tree/master/dynamic-theme",
"manifest_version": 2,
"name": "Dynamic theme example",
"permissions": [
"alarms",
"theme"
],
"background": {
"scripts": ["background.js"]
},
"version": "1.0",
"gecko": {
"strict_min_version": "55.0a2"
}
}