From b6749668b81c50aacc7ce28a1daaeca0411cb63e Mon Sep 17 00:00:00 2001 From: magnolia1234 <7676006-magnolia1234@users.noreply.gitlab.com> Date: Mon, 13 Apr 2020 19:11:29 +0200 Subject: [PATCH] Update Ad.nl (regional) --- background.js | 44 ++++++++++++++++---------------------------- contentScript.js | 5 +++-- 2 files changed, 19 insertions(+), 30 deletions(-) diff --git a/background.js b/background.js index 5ed2831..bb1a7b3 100644 --- a/background.js +++ b/background.js @@ -84,16 +84,22 @@ const remove_cookies_select_hold = { 'wsj.com': ['wsjregion'] } +// list of regional ad.nl sites +const ad_region_domains = ['bd.nl', 'ed.nl', 'tubantia.nl', 'bndestem.nl', 'pzc.nl', 'destentor.nl', 'gelderlander.nl']; + // select only specific cookie(s) to drop from remove_cookies domains -const remove_cookies_select_drop = { +var remove_cookies_select_drop = { 'ad.nl': ['temptationTrackingId'], 'caixinglobal.com': ['CAIXINGLB_LOGIN_UUID'], - 'demorgen.be': ['TID_ID'], 'dn.se': ['randomSplusId'], 'fd.nl': ['socialread'], 'nrc.nl': ['counter'], 'theatlantic.com': ['articleViews'] } +for (var domainIndex in ad_region_domains) { + let domain = ad_region_domains[domainIndex]; + remove_cookies_select_drop[domain] = ['temptationTrackingId']; +} // Override User-Agent with Googlebot const use_google_bot_default = [ @@ -152,10 +158,10 @@ var blockedRegexes = { 'elpais.com': /.+\.epimg\.net\/js\/.+\/noticia\.min\.js/, 'exame.abril.com.br': /.+\.tinypass\.com\/.+/, 'folha.uol.com.br': /.+\.folha\.uol\.com\.br\/paywall\/js\/.+\/publicidade\.ads\.js/, -'gestion.pe': /gestion\.pe\/pf\/dist\/template\/gestion-noticia\/default.js/, 'globo.com': /.+\.tinypass\.com\/.+/, 'foreignpolicy.com': /.+\.tinypass\.com\/.+/, 'fortune.com': /.+\.tinypass\.com\/.+/, +'gestion.pe': /gestion\.pe\/pf\/dist\/template\/gestion-noticia\/default.js/, 'haaretz.co.il': /haaretz\.co\.il\/htz\/js\/inter\.js/, 'haaretz.com': /haaretz\.com\/hdc\/web\/js\/minified\/header-scripts-int.js.+/, 'inquirer.com': /.+\.tinypass\.com\/.+/, @@ -231,6 +237,9 @@ ext_api.storage.sync.get({ }).map(function (key) { return sites[key].toLowerCase(); }); + if (enabledSites.includes('ad.nl')) { + enabledSites = enabledSites.concat(ad_region_domains); + } for (var domainIndex in enabledSites) { var domainVar = enabledSites[domainIndex]; @@ -260,13 +269,15 @@ ext_api.storage.onChanged.addListener(function (changes, namespace) { }).map(function (key) { return sites[key]; }); + if (enabledSites.includes('ad.nl')) { + enabledSites = enabledSites.concat(ad_region_domains); + } // reset disableJavascriptOnListedSites eventListener ext_api.webRequest.onBeforeRequest.removeListener(disableJavascriptOnListedSites); ext_api.webRequest.handlerBehaviorChanged(); } if (key === 'sites_custom') { var sites_custom = storageChange.newValue; - use_google_bot_custom = Object.keys(sites_custom).filter(function (key) { return sites_custom[key]['googlebot'] > 0; }).map(function (key) { @@ -279,7 +290,6 @@ ext_api.storage.onChanged.addListener(function (changes, namespace) { use_google_bot.push(domainVar); } } - block_js_custom = Object.keys(sites_custom).filter(function (key) { return sites_custom[key]['block_javascript'] > 0; }).map(function (key) { @@ -345,8 +355,6 @@ var extraInfoSpec = ['blocking', 'requestHeaders']; if (ext_api.webRequest.OnBeforeSendHeadersOptions.hasOwnProperty('EXTRA_HEADERS')) extraInfoSpec.push('extraHeaders'); -// list of regional ad.nl sites -const ad_region_domains = ['bd.nl', 'ed.nl', 'tubantia.nl', 'bndestem.nl', 'pzc.nl', 'destentor.nl', 'gelderlander.nl']; ext_api.webRequest.onBeforeSendHeaders.addListener(function(details) { var requestHeaders = details.requestHeaders; @@ -368,20 +376,6 @@ ext_api.webRequest.onBeforeSendHeaders.addListener(function(details) { }); } - // remove cookies for regional ADR sites of ad.nl (mainfest.json needs in permissions: ) - if (isSiteEnabled({url: '.ad.nl'})) { - var domainVar = new URL(details.url).hostname.replace('www.', ''); - if (ad_region_domains.includes(domainVar)) { - ext_api.cookies.getAll({domain: domainVar}, function(cookies) { - for (var i=0; i