initial commit

This commit is contained in:
karl.hudgell 2021-04-14 13:53:01 +01:00
commit 156d8ac985
2 changed files with 22 additions and 0 deletions

6
background.js Normal file
View 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
View 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"
]
}