mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 14:28:33 +02:00
* Update `proxy-blocker` extension to be compatible with firefox 56+ * Change `DIRECT 1234` to `DIRECT` see bug https://bugzilla.mozilla.org/show_bug.cgi?id=1355198
33 lines
522 B
JSON
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": "56.0a1"
|
|
}
|
|
},
|
|
|
|
"background": {
|
|
"scripts": [
|
|
"background/proxy-handler.js"
|
|
]
|
|
},
|
|
|
|
"options_ui": {
|
|
"page": "options/options.html",
|
|
"browser_style": true
|
|
},
|
|
|
|
"permissions": ["proxy", "storage"]
|
|
|
|
}
|