mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-10 08:17:49 +01:00
Add disable javascript functionality for theglobeandmail.com
This commit is contained in:
parent
338622dc39
commit
b0778bf8a5
2 changed files with 15 additions and 1 deletions
|
@ -225,6 +225,20 @@ browser.webRequest.onBeforeSendHeaders.addListener(function(details) {
|
||||||
["blocking"]
|
["blocking"]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Disable javascript for these sites
|
||||||
|
chrome.webRequest.onBeforeRequest.addListener(function(details) {
|
||||||
|
if (!isSiteEnabled(details) || details.url.indexOf("mod=rsswn") !== -1) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
return {cancel: true};
|
||||||
|
},
|
||||||
|
{
|
||||||
|
urls: ["*://*.theglobeandmail.com/*"],
|
||||||
|
types: ["script"]
|
||||||
|
},
|
||||||
|
["blocking"]
|
||||||
|
);
|
||||||
|
|
||||||
browser.webRequest.onBeforeSendHeaders.addListener(function(details) {
|
browser.webRequest.onBeforeSendHeaders.addListener(function(details) {
|
||||||
if (!isSiteEnabled(details)) {
|
if (!isSiteEnabled(details)) {
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -50,7 +50,7 @@ var defaultSites = {
|
||||||
'The Australian Financial Review': 'afr.com',
|
'The Australian Financial Review': 'afr.com',
|
||||||
'The Boston Globe': 'bostonglobe.com',
|
'The Boston Globe': 'bostonglobe.com',
|
||||||
'The Business Journals': 'bizjournals.com',
|
'The Business Journals': 'bizjournals.com',
|
||||||
'The Globe and Mail': 'theglobeandmail.com',
|
'The Globe and Mail (javascript disabled)': 'theglobeandmail.com',
|
||||||
'The Herald': 'theherald.com.au',
|
'The Herald': 'theherald.com.au',
|
||||||
'The Japan Times': 'japantimes.co.jp',
|
'The Japan Times': 'japantimes.co.jp',
|
||||||
'TheMarker': 'themarker.com',
|
'TheMarker': 'themarker.com',
|
||||||
|
|
Loading…
Reference in a new issue