bypass-paywalls-chrome-clean/background.js

599 lines
21 KiB
JavaScript
Raw Normal View History

/* Please respect alphabetical order when adding a site in any list */
2017-07-08 14:16:27 -07:00
'use strict';
var ext_api = (typeof browser === 'object') ? browser : chrome;
2017-07-08 14:16:27 -07:00
// Cookies from this list are blocked by default (obsolete)
// defaultSites are loaded from sites.js at installation extension
// var defaultSites = {};
2017-07-08 14:16:27 -07:00
2018-01-30 21:26:21 -08:00
const restrictions = {
'barrons.com': /.+barrons\.com\/articles\/.+/,
'economist.com': /.+economist\.com\/.+\/\d{1,4}\/\d{1,2}\/\d{2}\/.+/,
'elcomercio.pe': /.+\/elcomercio.pe\/.+((\w)+(\-)+){3,}.+/,
'gestion.pe': /.+\/gestion.pe\/.+((\w)+(\-)+){3,}.+/,
'quora.com': /^((?!quora\.com\/search\?q=).)*$/,
'seekingalpha.com': /.+seekingalpha\.com\/article\/.+/,
'theglobeandmail.com': /(.+theglobeandmail\.com\/.+\/article-.+|.+theglobeandmail\.com\/pb\/resources\/scripts\/build\/.+\.js)/
2017-07-08 14:16:27 -07:00
}
// Don't remove cookies before page load
// allow_cookies are completed with domains in sites.js (default allow/remove_cookies)
var allow_cookies = [
'adelaidenow.com.au',
2020-03-04 09:48:08 -08:00
'aftonbladet.se',
'bostonglobe.com',
'cairnspost.com.au',
'clarin.com',
'couriermail.com.au',
'dailytelegraph.com.au',
2020-03-19 12:05:19 -07:00
'demorgen.be',
2020-01-25 09:55:30 -08:00
'dn.se',
'dvhn.nl',
'elmercurio.com',
'eurekareport.com.au',
'faz.net',
2020-01-21 10:46:27 -08:00
'folha.uol.com.br',
'gestion.pe',
'goldcoastbulletin.com.au',
'haaretz.co.il',
'haaretz.com',
2020-01-11 04:59:27 -08:00
'handelsblatt.com',
'heraldsun.com.au',
2020-02-25 14:18:39 -08:00
'humo.be',
'intelligentinvestor.com.au',
2020-01-19 05:01:23 -08:00
'kleinezeitung.at',
'lc.nl',
'lrb.co.uk',
'mexiconewsdaily.com',
2020-04-28 00:46:11 -07:00
'miamiherald.com',
2020-01-31 06:16:02 -08:00
'modernhealthcare.com',
2020-01-31 05:58:53 -08:00
'nationalreview.com',
2020-03-23 09:50:50 -07:00
'newrepublic.com',
'ntnews.com.au',
'nytimes.com',
'parool.nl',
'quora.com',
2020-01-02 00:10:30 -08:00
'scribd.com',
2020-02-26 14:11:34 -08:00
'seekingalpha.com',
2020-04-12 23:56:45 -07:00
'switzersuperreport.com.au',
2020-01-02 00:10:30 -08:00
'techinasia.com',
'telegraph.co.uk',
'the-american-interest.com',
'theathletic.co.uk',
'theathletic.com',
'theaustralian.com.au',
'themarker.com',
'themercury.com.au',
'thetimes.co.uk',
'townsvillebulletin.com.au',
'trouw.nl',
'volkskrant.nl',
'weeklytimesnow.com.au',
2020-01-31 05:15:09 -08:00
'worldpoliticsreview.com',
2017-07-08 14:16:27 -07:00
]
// Removes cookies after page load
// remove_cookies are completed with domains of sites.js (default allow/remove_cookies)
var remove_cookies = [
2017-07-08 14:16:27 -07:00
]
// select specific cookie(s) to hold from remove_cookies domains
const remove_cookies_select_hold = {
2020-03-22 05:21:33 -07:00
'barrons.com': ['wsjregion'],
'newstatesman.com': ['STYXKEY_nsversion'],
'qz.com': ['gdpr'],
2020-03-19 11:18:40 -07:00
'washingtonpost.com': ['wp_gdpr'],
'wsj.com': ['wsjregion']
}
2020-04-13 10:09:49 -07:00
// 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
2020-04-13 10:09:49 -07:00
var remove_cookies_select_drop = {
'ad.nl': ['temptationTrackingId'],
'caixinglobal.com': ['CAIXINGLB_LOGIN_UUID'],
'dn.se': ['randomSplusId'],
2020-04-03 11:56:50 -07:00
'fd.nl': ['socialread'],
'nrc.nl': ['counter'],
'theatlantic.com': ['articleViews']
}
2020-04-13 10:09:49 -07:00
for (var domainIndex in ad_region_domains) {
let domain = ad_region_domains[domainIndex];
remove_cookies_select_drop[domain] = ['temptationTrackingId'];
}
2019-05-12 14:00:27 -07:00
// Override User-Agent with Googlebot
const use_google_bot_default = [
'adelaidenow.com.au',
2020-03-04 09:48:08 -08:00
'aftonbladet.se',
2019-05-25 14:18:22 -07:00
'barrons.com',
'cairnspost.com.au',
'couriermail.com.au',
'dailytelegraph.com.au',
2020-01-25 09:55:30 -08:00
'dn.se',
'eurekareport.com.au',
2020-03-13 04:00:30 -07:00
'ft.com',
'goldcoastbulletin.com.au',
'haaretz.co.il',
'haaretz.com',
2020-01-11 04:59:27 -08:00
'handelsblatt.com',
'heraldsun.com.au',
'intelligentinvestor.com.au',
2019-09-22 16:54:54 -07:00
'mexiconewsdaily.com',
2020-04-28 00:46:11 -07:00
'miamiherald.com',
'ntnews.com.au',
'quora.com',
2020-02-26 14:11:34 -08:00
'seekingalpha.com',
2020-04-12 23:56:45 -07:00
'switzersuperreport.com.au',
'telegraph.co.uk',
'theathletic.co.uk',
'theathletic.com',
'theaustralian.com.au',
'themarker.com',
'themercury.com.au',
2019-09-22 17:03:15 -07:00
'thetimes.co.uk',
'townsvillebulletin.com.au',
'weeklytimesnow.com.au',
2020-01-31 05:15:09 -08:00
'worldpoliticsreview.com',
'wsj.com',
];
var use_google_bot_custom = [];
var use_google_bot = use_google_bot_default.concat(use_google_bot_custom);
2019-05-12 14:00:27 -07:00
// block paywall-scripts individually
var blockedRegexes = {
2020-01-22 10:04:30 -08:00
'adweek.com': /.+\.lightboxcdn\.com\/.+/,
'afr.com': /afr\.com\/assets\/vendorsReactRedux_client.+\.js/,
'americanbanker.com': /.+\.tinypass\.com\/.+/,
'bloomberg.com': /.+\.tinypass\.com\/.+/,
'bostonglobe.com': /meter\.bostonglobe\.com\/js\/.+/,
2019-11-19 05:25:29 -08:00
'businessinsider.com': /(.+\.tinypass\.com\/.+|cdn\.onesignal\.com\/sdks\/.+\.js)/,
2020-05-02 12:55:17 -07:00
'challenges.fr': /.+\.poool\.fr\/.+/,
'chicagobusiness.com': /.+\.tinypass\.com\/.+/,
'chicagotribune.com': /.+:\/\/.+\.tribdss\.com\//,
'corriere.it': /(\.rcsobjects\.it\/rcs_cpmt\/|\.rcsobjects\.it\/rcs_tracking-service\/|\.corriereobjects\.it\/.+\/js\/_paywall\.sjs|\.corriereobjects\.it\/.*\/js\/tracking\/|\.userzoom\.com\/files\/js\/|\.lp4\.io\/app\/)/,
'digiday.com': /.+\.tinypass\.com\/.+/,
'economist.com': /(.+\.tinypass\.com\/.+|economist\.com\/engassets\/_next\/static\/chunks\/framework.+\.js)/,
2020-04-25 11:39:36 -07:00
'elcomercio.pe': /elcomercio\.pe\/pf\/dist\/template\/elcomercio-noticia.+\.js/,
'elmercurio.com': /merreader\.emol\.cl\/assets\/js\/vendor\/modal\.js/,
2020-05-25 12:01:15 -07:00
'elmundo.es': /cdn\.ampproject\.org\/v\d\/amp-access-.+\.js/,
'elpais.com': /.+\.epimg\.net\/js\/.+\/noticia\.min\.js/,
'exame.abril.com.br': /.+\.tinypass\.com\/.+/,
2020-01-21 10:46:27 -08:00
'folha.uol.com.br': /.+\.folha\.uol\.com\.br\/paywall\/js\/.+\/publicidade\.ads\.js/,
'globo.com': /.+\.tinypass\.com\/.+/,
'foreignpolicy.com': /.+\.tinypass\.com\/.+/,
'fortune.com': /.+\.tinypass\.com\/.+/,
2020-04-25 11:39:36 -07:00
'gestion.pe': /gestion\.pe\/pf\/dist\/template\/gestion-noticia.+\.js/,
2020-05-15 07:04:31 -07:00
'globes.co.il': /.+\.tinypass\.com\/.+/,
'haaretz.co.il': /haaretz\.co\.il\/htz\/js\/inter\.js/,
'haaretz.com': /haaretz\.com\/hdc\/web\/js\/minified\/header-scripts-int.js.+/,
2020-04-23 12:44:27 -07:00
'ilmessaggero.it': /(utils\.cedsdigital\.it\/js\/PaywallMeter\.js|static\.viralize\.tv\/viralize_player)/,
'inquirer.com': /.+\.tinypass\.com\/.+/,
2020-03-21 07:33:05 -07:00
'ladepeche.fr': /.+\.poool\.fr\/.+/,
2020-03-22 05:21:33 -07:00
'lastampa.it': /.+\.repstatic\.it\/minify\/sites\/lastampa\/.+\/config\.cache\.php\?name=social_js/,
2020-05-20 08:02:18 -07:00
'lejdd.fr': /.+\.poool\.fr\/.+/,
'leparisien.fr': /.+\.tinypass\.com\/.+/,
'lesechos.fr': /.+\.tinypass\.com\/.+/,
2020-03-28 10:49:43 -07:00
'livemint.com': /(.+\.livemint\.com\/js\/localWorker\.js|analytics\.htmedia\.in\/analytics-js\/.+\.js)/,
2020-03-25 00:47:35 -07:00
'lopinion.fr': /.+\.poool\.fr\/.+/,
'lrb.co.uk': /.+\.tinypass\.com\/.+/,
2020-01-31 06:16:02 -08:00
'modernhealthcare.com': /.+\.tinypass\.com\/.+/,
2020-01-31 05:58:53 -08:00
'nationalreview.com': /.+\.blueconic\.net\/.+/,
'newcastleherald.com.au': /.+cdn-au\.piano\.io\/api\/tinypass.+\.js/,
2020-03-23 09:50:50 -07:00
'newrepublic.com': /.+\.onecount\.net\/js\/.+/,
'nytimes.com': /(.+meter-svc\.nytimes\.com\/meter\.js.+|.+mwcm\.nyt\.com\/.+\.js)/,
'nzherald.co.nz': /nzherald\.co\.nz\/.+\/headjs\/.+\.js/,
2020-03-02 05:53:37 -08:00
'portnews.com.au': /.+cdn-au\.piano\.io\/api\/tinypass.+\.js/,
2020-02-01 12:20:41 -08:00
'repubblica.it': /scripts\.repubblica\.it\/pw\/pw\.js.+/,
'science-et-vie.com': /.+\.qiota\.com\/.+/,
2020-05-02 00:02:47 -07:00
'sciencesetavenir.fr': /.+\.poool\.fr\/.+/,
'sloanreview.mit.edu': /.+\.tinypass\.com\/.+/,
'spectator.co.uk': /.+\.tinypass\.com\/.+/,
'spectator.com.au': /.+\.tinypass\.com\/.+/,
'telegraph.co.uk': /.+\.tinypass\.com\/.+/,
2020-02-03 08:45:57 -08:00
'theadvocate.com.au': /.+cdn-au\.piano\.io\/api\/tinypass.+\.js/,
'thecourier.com.au': /.+cdn-au\.piano\.io\/api\/tinypass.+\.js/,
2020-01-30 08:55:30 -08:00
'thedailybeast.com': /.+\.tinypass\.com\/.+/,
'theglobeandmail.com': /theglobeandmail\.com\/pb\/resources\/scripts\/build\/chunk-common-vendor.+\.js/,
'thenation.com': /.+\.tinypass\.com\/.+/,
'valeursactuelles.com': /.+\.poool\.fr\/.+/
};
2017-07-08 14:16:27 -07:00
const userAgentDesktop = "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"
const userAgentMobile = "Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible ; Googlebot/2.1 ; +http://www.google.com/bot.html)"
2017-07-08 14:16:27 -07:00
var enabledSites = [];
function setDefaultOptions() {
ext_api.storage.sync.set({
sites: defaultSites
}, function() {
ext_api.runtime.openOptionsPage();
});
}
2020-02-25 14:18:39 -08:00
// Get the enabled sites (from local storage) & add to allow/remove_cookies (if not already in one of these arrays)
// Add googlebot- and block_javascript-settings for custom sites
ext_api.storage.sync.get({
sites: {},
sites_custom: {}
}, function (items) {
var sites = items.sites;
var sites_custom = items.sites_custom;
// custom googlebot
use_google_bot_custom = Object.keys(sites_custom).filter(function (key) {
return sites_custom[key]['googlebot'] > 0;
}).map(function (key) {
return sites_custom[key]['domain'].toLowerCase();
});
use_google_bot = use_google_bot_default.slice();
// custom block javascript (only (sub)domain)
block_js_custom = Object.keys(sites_custom).filter(function (key) {
return sites_custom[key]['block_javascript'] > 0;
}).map(function (key) {
return sites_custom[key]['domain'].toLowerCase();
});
block_js = block_js_default.slice();
enabledSites = Object.keys(sites).filter(function (key) {
return (sites[key] !== '' && sites[key] !== '###');
}).map(function (key) {
return sites[key].toLowerCase();
});
2020-04-13 10:09:49 -07:00
if (enabledSites.includes('ad.nl')) {
enabledSites = enabledSites.concat(ad_region_domains);
}
for (var domainIndex in enabledSites) {
var domainVar = enabledSites[domainIndex];
if (!allow_cookies.includes(domainVar) && !remove_cookies.includes(domainVar)) {
allow_cookies.push(domainVar);
remove_cookies.push(domainVar);
}
if (use_google_bot_custom.includes(domainVar)) {
use_google_bot.push(domainVar);
}
if (block_js_custom.includes(domainVar)) {
block_js.push("*://*." + domainVar + "/*"); // subdomains of site
block_js.push("*://" + domainVar + "/*"); // site without www.-prefix
}
}
disableJavascriptOnListedSites();
});
2017-07-08 14:16:27 -07:00
// Listen for changes to options
ext_api.storage.onChanged.addListener(function (changes, namespace) {
for (var key in changes) {
var storageChange = changes[key];
if (key === 'sites') {
var sites = storageChange.newValue;
enabledSites = Object.keys(sites).filter(function (key) {
return (sites[key] !== '' && sites[key] !== '###');
}).map(function (key) {
return sites[key];
});
2020-04-13 10:09:49 -07:00
if (enabledSites.includes('ad.nl')) {
enabledSites = enabledSites.concat(ad_region_domains);
}
2020-03-28 07:19:06 -07:00
// 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) {
return sites_custom[key]['domain'].toLowerCase();
});
use_google_bot = use_google_bot_default.slice();
for (var domainIndex in use_google_bot_custom) {
var domainVar = use_google_bot_custom[domainIndex];
if (domainVar && !use_google_bot.includes(domainVar)) {
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) {
return sites_custom[key]['domain'].toLowerCase();
});
block_js = block_js_default.slice();
for (var domainIndex in block_js_custom) {
var domainVar = block_js_custom[domainIndex];
if (domainVar && !block_js.includes(domainVar)) {
block_js.push("*://*." + domainVar + "/*"); // subdomains of site
block_js.push("*://" + domainVar + "/*"); // site without www.-prefix
}
}
2020-03-28 07:19:06 -07:00
// reset disableJavascriptOnListedSites eventListener
ext_api.webRequest.onBeforeRequest.removeListener(disableJavascriptOnListedSites);
ext_api.webRequest.handlerBehaviorChanged();
}
2017-07-08 14:16:27 -07:00
}
});
// Set and show default options on install
ext_api.runtime.onInstalled.addListener(function (details) {
2017-07-08 14:16:27 -07:00
if (details.reason == "install") {
setDefaultOptions();
2017-07-08 14:16:27 -07:00
} else if (details.reason == "update") {
// User updated extension
}
});
// repubblica.it bypass
ext_api.webRequest.onBeforeRequest.addListener(function (details) {
if (!isSiteEnabled(details)) {
return;
}
var updatedUrl = details.url.replace('/pwa/', '/ws/detail/');
return { redirectUrl: updatedUrl };
},
{urls:["*://*.repubblica.it/pwa/*"], types:["main_frame"]},
["blocking"]
);
const faz_uaMobile = "Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Mobile Safari/537.36";
ext_api.webRequest.onBeforeSendHeaders.addListener(
function (details) {
let headers = details.requestHeaders;
headers.forEach(function (header, i) {
if (header.name.toLowerCase() == 'user-agent')
header.value = faz_uaMobile;
});
if (!details.originUrl && details.type == "xmlhttprequest" ||
details.initiator == "https://www.faz.net" && details.type == "xmlhttprequest")
return { requestHeaders: headers };
}, {
urls: ["*://m.faz.net/*"]
},
["blocking", "requestHeaders"]);
2020-06-01 08:07:47 -07:00
var block_js_default = ["*://cdn.tinypass.com/*", "*://*.piano.io/*", "*://*.poool.fr/*", "*://*.blueconic.net/*", "*://*.onecount.net/*", "*://*.qiota.com/*", "*://*.tribdss.com/*"];
var block_js_custom = [];
var block_js = block_js_default.concat(block_js_custom);
// Disable javascript for these sites/general paywall-scripts
function disableJavascriptOnListedSites() {
ext_api.webRequest.onBeforeRequest.addListener(function (details) {
if (!isSiteEnabled(details)) {
return;
}
return {
cancel: true
};
}, {
urls: block_js,
types: ["script"]
},
["blocking"]);
}
var extraInfoSpec = ['blocking', 'requestHeaders'];
if (ext_api.webRequest.OnBeforeSendHeadersOptions.hasOwnProperty('EXTRA_HEADERS'))
extraInfoSpec.push('extraHeaders');
ext_api.webRequest.onBeforeSendHeaders.addListener(function(details) {
var requestHeaders = details.requestHeaders;
var header_referer = '';
for (var n in requestHeaders) {
if (requestHeaders[n].name.toLowerCase() == 'referer') {
header_referer = requestHeaders[n].value;
continue;
}
}
// fix brave browser
if (!details.originUrl && !header_referer.includes(details.initiator))
header_referer = details.initiator;
2020-01-09 02:30:05 -08:00
2019-12-02 05:35:33 -08:00
// remove cookies for sites medium platform (mainfest.json needs in permissions: <all_urls>)
2020-05-28 07:38:29 -07:00
var medium_custom_domain = (isSiteEnabled({url: 'https://medium.com'}) && matchUrlDomain('cdn-client.medium.com', details.url) && !matchUrlDomain('medium.com', header_referer));
if (medium_custom_domain) {
ext_api.cookies.getAll({domain: urlHost(header_referer)}, function(cookies) {
for (var i=0; i<cookies.length; i++) {
ext_api.cookies.remove({url: (cookies[i].secure ? "https://" : "http://") + cookies[i].domain + cookies[i].path, name: cookies[i].name});
}
});
}
// block external javascript for custom sites (optional)
if (matchUrlDomain([block_js_custom], header_referer) && details.url.match(/(\.js$|\.js\?)/) && isSiteEnabled({url: header_referer})) {
return { cancel: true };
}
2020-01-09 02:30:05 -08:00
// check for blocked regular expression: domain enabled, match regex, block on an internal or external regex
var blockedDomains = Object.keys(blockedRegexes);
var domain = matchUrlDomain(blockedDomains, header_referer);
var block_regex = true;
if (domain && details.url.match(blockedRegexes[domain]) && isSiteEnabled({url: header_referer})) {
if (domain === 'theglobeandmail.com' && !(header_referer.includes('?ref=premium'))) {
block_regex = false;
}
if (block_regex) return { cancel: true };
2017-07-08 14:16:27 -07:00
}
if (!isSiteEnabled(details)) {
return;
}
2017-07-08 14:16:27 -07:00
var tabId = details.tabId;
var useUserAgentMobile = false;
2017-07-08 14:16:27 -07:00
var setReferer = false;
// if referer exists, set it to google
requestHeaders = requestHeaders.map(function (requestHeader) {
2017-07-08 14:16:27 -07:00
if (requestHeader.name === 'Referer') {
if (details.url.includes("cooking.nytimes.com/api/v1/users/bootstrap")) {
// this fixes images not being loaded on cooking.nytimes.com main page
// referrer has to be *nytimes.com otherwise returns 403
requestHeader.value = 'https://cooking.nytimes.com';
} else if (matchUrlDomain(['clarin.com', 'kleinezeitung.at', 'fd.nl'], details.url)) {
requestHeader.value = 'https://www.facebook.com/';
} else {
requestHeader.value = 'https://www.google.com/';
}
setReferer = true;
}
if (requestHeader.name === 'User-Agent') {
useUserAgentMobile = requestHeader.value.toLowerCase().includes("mobile");
}
2017-07-08 14:16:27 -07:00
return requestHeader;
});
2017-07-08 14:16:27 -07:00
// otherwise add it
if (!setReferer) {
if (matchUrlDomain(['clarin.com', 'kleinezeitung.at', 'fd.nl'], details.url)) {
2017-07-08 14:16:27 -07:00
requestHeaders.push({
name: 'Referer',
value: 'https://www.facebook.com/'
});
} else {
requestHeaders.push({
name: 'Referer',
value: 'https://www.google.com/'
});
}
}
2019-05-12 14:00:27 -07:00
// override User-Agent to use Googlebot
if (matchUrlDomain(use_google_bot, details.url)) {
requestHeaders.push({
"name": "User-Agent",
"value": useUserAgentMobile ? userAgentMobile : userAgentDesktop
})
2019-05-12 14:00:27 -07:00
requestHeaders.push({
"name": "X-Forwarded-For",
"value": "66.249.66.1"
})
}
2017-07-08 14:16:27 -07:00
// remove cookies before page load
if (!matchUrlDomain(allow_cookies, details.url)) {
requestHeaders = requestHeaders.map(function(requestHeader) {
if (requestHeader.name === 'Cookie') {
requestHeader.value = '';
2017-07-08 14:16:27 -07:00
}
return requestHeader;
});
}
2017-07-08 14:16:27 -07:00
if (tabId !== -1) {
ext_api.tabs.get(tabId, function (currentTab) {
2020-05-28 07:38:29 -07:00
if (isSiteEnabled(currentTab) || medium_custom_domain) {
// run contentScript inside tab
ext_api.tabs.executeScript(tabId, {
file: 'contentScript.js',
runAt: 'document_start'
}, function(res) {
if (ext_api.runtime.lastError || res[0]) {
return;
}
});
2017-07-08 14:16:27 -07:00
}
});
}
return { requestHeaders: requestHeaders };
}, {
urls: ['<all_urls>']
}, extraInfoSpec);
// extraInfoSpec is ['blocking', 'requestHeaders'] + possible 'extraHeaders'
2017-07-08 14:16:27 -07:00
ext_api.tabs.onUpdated.addListener(function (tabId, info, tab) { updateBadge(tab); });
ext_api.tabs.onActivated.addListener(function (activeInfo) { ext_api.tabs.get(activeInfo.tabId, updateBadge); });
function updateBadge (activeTab) {
if (!activeTab) { return; }
const badgeText = getTextB(activeTab.url);
ext_api.browserAction.setBadgeBackgroundColor({color: 'red'});
ext_api.browserAction.setBadgeText({text: badgeText});
}
function getTextB(currentUrl) {
2020-04-13 10:09:49 -07:00
return currentUrl && isSiteEnabled({url: currentUrl}) ? 'ON' : '';
}
2017-07-08 14:16:27 -07:00
// remove cookies after page load
ext_api.webRequest.onCompleted.addListener(function (details) {
var domainVar = matchUrlDomain(remove_cookies, details.url);
if (!domainVar || !enabledSites.includes(domainVar))
return;
ext_api.cookies.getAll({
domain: domainVar
}, function (cookies) {
for (var i = 0; i < cookies.length; i++) {
var cookie_domain = cookies[i].domain;
var rc_domain = cookie_domain.replace(/^(\.?www\.|\.)/, '');
// hold specific cookie(s) from remove_cookies domains
if ((rc_domain in remove_cookies_select_hold) && remove_cookies_select_hold[rc_domain].includes(cookies[i].name)) {
continue; // don't remove specific cookie
}
// drop only specific cookie(s) from remove_cookies domains
if ((rc_domain in remove_cookies_select_drop) && !(remove_cookies_select_drop[rc_domain].includes(cookies[i].name))) {
continue; // only remove specific cookie
}
ext_api.cookies.remove({
url: (cookies[i].secure ? "https://" : "http://") + cookies[i].domain + cookies[i].path,
name: cookies[i].name
});
}
});
2017-07-08 14:16:27 -07:00
}, {
urls: ["<all_urls>"]
2017-07-08 14:16:27 -07:00
});
function isSiteEnabled(details) {
var enabledSite = matchUrlDomain(enabledSites, details.url);
if (enabledSite in restrictions) {
return restrictions[enabledSite].test(details.url);
}
return !!enabledSite;
}
function matchDomain(domains, hostname) {
var matched_domain = false;
if (!hostname)
hostname = window.location.hostname;
if (typeof domains === 'string')
domains = [domains];
domains.some(domain => (hostname === domain || hostname.endsWith('.' + domain)) && (matched_domain = domain));
return matched_domain;
}
function urlHost(url) {
if (url && url.startsWith('http')) {
try {
return new URL(url).hostname;
} catch (e) {
console.log(`url not valid: ${url} error: ${e}`);
}
}
return url;
}
function matchUrlDomain(domains, url) {
return matchDomain(domains, urlHost(url));
}
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, '\\$&');
var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, ' '));
2019-02-07 19:23:57 -08:00
}
function stripQueryStringAndHashFromPath(url) {
return url.split("?")[0].split("#")[0];
}