28 lines
660 B
JSON
28 lines
660 B
JSON
{
|
|
"name": "Cloudflare Blocker",
|
|
"version": "1.0.0",
|
|
"author": "libroot.org",
|
|
"developer": {
|
|
"name": "libroot",
|
|
"url": "https://libroot.org/posts/Cloudflare-Blocker-Firefox-extension"
|
|
},
|
|
"description": "Blocks requests if they have Cloudflare's headers, and shows a blocked page.",
|
|
"manifest_version": 2,
|
|
"permissions": [
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"tabs",
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"scripts": ["background.js"],
|
|
"persistent": false
|
|
},
|
|
"browser_action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": "icons/icon.png"
|
|
},
|
|
"web_accessible_resources": [
|
|
"blocked.html"
|
|
]
|
|
}
|