Block URL request if masterkey is present in parameters

This commit is contained in:
2017-07-08 08:43:26 +02:00
parent 7a7d2fd724
commit e341963675
6 changed files with 176 additions and 13 deletions

View File

@@ -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"
]
}