Files
webextensions-examples/proxy-blocker/manifest.json
wbamberg ea0f7f392a Simplify options styles (#226)
* Simplify options styles

* Set browser_style explicitly
2017-06-05 12:59:27 -07:00

33 lines
522 B
JSON

{
"manifest_version": 2,
"name": "Proxy-blocker",
"description": "Uses the proxy API to block requests to specific hosts.",
"version": "1.0",
"icons": {
"48": "icons/block.svg",
"96": "icons/block.svg"
},
"applications": {
"gecko": {
"strict_min_version": "55.0a1"
}
},
"background": {
"scripts": [
"background/proxy-handler.js"
]
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"permissions": ["proxy", "storage"]
}