mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-10 07:07:47 +01:00
Fix Boston Globe
Only block paywall-script + cookie-fix.
This commit is contained in:
parent
c01e2680fc
commit
d2af3e054a
2 changed files with 5 additions and 3 deletions
|
@ -188,6 +188,7 @@ const remove_cookies_select_hold = {
|
|||
// select only specific cookie(s) to drop from remove_cookies domains
|
||||
const remove_cookies_select_drop = {
|
||||
'ad.nl': ['temptationTrackingId'],
|
||||
'bostonglobe.com': ['FMPaywall'],
|
||||
'demorgen.be': ['TID_ID'],
|
||||
'economist.com': ['rvuuid'],
|
||||
'ed.nl': ['temptationTrackingId'],
|
||||
|
@ -223,7 +224,8 @@ const blockedRegexes = {
|
|||
'haaretz.co.il': /haaretz\.co\.il\/htz\/js\/inter\.js/,
|
||||
'nzherald.co.nz': /nzherald\.co\.nz\/.+\/headjs\/.+\.js/,
|
||||
'economist.com': /.+\.tinypass\.com\/.+/,
|
||||
'lrb.co.uk': /.+\.tinypass\.com\/.+/
|
||||
'lrb.co.uk': /.+\.tinypass\.com\/.+/,
|
||||
'bostonglobe.com': /meter\.bostonglobe\.com\/js\/.+/
|
||||
};
|
||||
|
||||
const userAgentDesktop = "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
|
||||
|
@ -272,7 +274,7 @@ chrome.webRequest.onBeforeRequest.addListener(function(details) {
|
|||
return {cancel: true};
|
||||
},
|
||||
{
|
||||
urls: ["*://*.theglobeandmail.com/*", "*://*.thestar.com/*", "*://*.newstatesman.com/*", "*://*.bostonglobe.com/*", "*://*.afr.com/*"],
|
||||
urls: ["*://*.theglobeandmail.com/*", "*://*.thestar.com/*", "*://*.newstatesman.com/*", "*://*.afr.com/*"],
|
||||
types: ["script"]
|
||||
},
|
||||
["blocking"]
|
||||
|
|
|
@ -60,7 +60,7 @@ var defaultSites = {
|
|||
'The Atlantic': 'theatlantic.com',
|
||||
'The Australian': 'theaustralian.com.au',
|
||||
'The Australian Financial Review (javascript disabled)': 'afr.com',
|
||||
'The Boston Globe (javascript disabled)': 'bostonglobe.com',
|
||||
'The Boston Globe': 'bostonglobe.com',
|
||||
'The Business Journals': 'bizjournals.com',
|
||||
'The Diplomat': 'thediplomat.com',
|
||||
'The Globe and Mail (javascript disabled)': 'theglobeandmail.com',
|
||||
|
|
Loading…
Reference in a new issue