Initial commit
This commit is contained in:
commit
e90ff542b0
8 changed files with 250 additions and 0 deletions
28
manifest.json
Normal file
28
manifest.json
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue