initial commit
This commit is contained in:
commit
156d8ac985
6
background.js
Normal file
6
background.js
Normal file
@ -0,0 +1,6 @@
|
||||
chrome.webRequest.onBeforeRequest.addListener(function (d) {
|
||||
return { cancel: true };
|
||||
}, {
|
||||
urls: ["https://www.basingstokegazette.co.uk/resources/shared/responsive-sync/*"]
|
||||
},
|
||||
["blocking"]);
|
16
manifest.json
Normal file
16
manifest.json
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"manifest_version": 2,
|
||||
"name": "Basingstoke Gazette UnBlock",
|
||||
"description": "Bypass Basingstoke Gazette Paywall",
|
||||
"version": "1.0",
|
||||
"background": {
|
||||
"scripts": [
|
||||
"background.js"
|
||||
]
|
||||
},
|
||||
"permissions": [
|
||||
"webRequest",
|
||||
"*://www.basingstokegazette.co.uk/*",
|
||||
"webRequestBlocking"
|
||||
]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user