24 lines
595 B
JSON
24 lines
595 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Basingstoke Gazette UnBlock",
|
|
"description": "Bypass Basingstoke Gazette Paywall",
|
|
"version": "1.0",
|
|
"browser_action": {
|
|
"default_ison": "icon.png",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"background": {
|
|
"scripts": [
|
|
"background.js"
|
|
]
|
|
},
|
|
"permissions": [
|
|
"webRequest",
|
|
"*://www.basingstokegazette.co.uk/*",
|
|
"webRequestBlocking"
|
|
],
|
|
"content_scripts": [{
|
|
"js": ["content.js"],
|
|
"matches": ["https://www.basingstokegazette.co.uk/*"]
|
|
}]
|
|
} |