Block URL request if masterkey is present in parameters
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": ["https://*/*", "http://*/*"],
|
||||
"matches": ["<all_urls>"],
|
||||
"js": ["lib/parseuri.js", "lib/misc.js", "compat.js", "lib/main.js"],
|
||||
"run_at" : "document_idle",
|
||||
"all_frames" : true
|
||||
@@ -19,16 +19,18 @@
|
||||
],
|
||||
|
||||
"background": {
|
||||
"persistent": false,
|
||||
"persistent": true,
|
||||
"scripts": ["background.js"]
|
||||
},
|
||||
|
||||
"options_page": "options.html",
|
||||
|
||||
"permissions": [
|
||||
"https://*/",
|
||||
"http://*/",
|
||||
"<all_urls>",
|
||||
"notifications",
|
||||
"webRequest",
|
||||
"webRequestBlocking",
|
||||
"tabs",
|
||||
"storage"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user