diff --git a/background.js b/background.js index 3fd9417..8e060c1 100755 --- a/background.js +++ b/background.js @@ -1,6 +1,7 @@ /* Please respect alphabetical order when adding a site in any list */ 'use strict'; +var ext_api = chrome || browser; // Cookies from this list are blocked by default (obsolete) // defaultSites are loaded from sites.js at installation extension @@ -109,7 +110,6 @@ const use_google_bot_default = [ 'lemonde.fr', 'mexiconewsdaily.com', 'ntnews.com.au', -'nytimes.com', 'prime.economictimes.indiatimes.com', 'quora.com', 'seekingalpha.com', @@ -157,12 +157,13 @@ var blockedRegexes = { 'lejdd.fr': /.+\.swisspay\.ch\/.+/, 'leparisien.fr': /.+\.tinypass\.com\/.+/, 'lesechos.fr': /.+\.tinypass\.com\/.+/, -'lrb.co.uk': /.+\.tinypass\.com\/.+/, 'lopinion.fr': /.+\.poool\.fr\/.+/, +'lrb.co.uk': /.+\.tinypass\.com\/.+/, 'modernhealthcare.com': /.+\.tinypass\.com\/.+/, 'nationalreview.com': /.+\.blueconic\.net\/.+/, 'newcastleherald.com.au': /.+cdn-au\.piano\.io\/api\/tinypass.+\.js/, '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/, 'portnews.com.au': /.+cdn-au\.piano\.io\/api\/tinypass.+\.js/, 'repubblica.it': /scripts\.repubblica\.it\/pw\/pw\.js.+/, @@ -184,16 +185,16 @@ const userAgentMobile = "Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible ; var enabledSites = []; function setDefaultOptions() { - chrome.storage.sync.set({ + ext_api.storage.sync.set({ sites: defaultSites }, function() { - chrome.tabs.create({ 'url': 'chrome://extensions/?options=' + chrome.runtime.id }); + ext_api.runtime.openOptionsPage(); }); } // 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 -chrome.storage.sync.get({ +ext_api.storage.sync.get({ sites: {}, sites_custom: {} }, function (items) { @@ -237,8 +238,9 @@ chrome.storage.sync.get({ } } }); + // Listen for changes to options -chrome.storage.onChanged.addListener(function (changes, namespace) { +ext_api.storage.onChanged.addListener(function (changes, namespace) { for (var key in changes) { var storageChange = changes[key]; if (key === 'sites') { @@ -283,7 +285,7 @@ chrome.storage.onChanged.addListener(function (changes, namespace) { }); // Set and show default options on install -chrome.runtime.onInstalled.addListener(function (details) { +ext_api.runtime.onInstalled.addListener(function (details) { if (details.reason == "install") { setDefaultOptions(); } else if (details.reason == "update") { @@ -292,7 +294,7 @@ chrome.runtime.onInstalled.addListener(function (details) { }); // repubblica.it bypass -chrome.webRequest.onBeforeRequest.addListener(function (details) { +ext_api.webRequest.onBeforeRequest.addListener(function (details) { if (!isSiteEnabled(details)) { return; } @@ -307,7 +309,7 @@ var block_js_default = ["*://*.tinypass.com/*", "*://*.poool.fr/*", "*://*.piano var block_js_custom = []; var block_js = block_js_default.concat(block_js_custom); // Disable javascript for these sites/general paywall-scripts -chrome.webRequest.onBeforeRequest.addListener(function (details) { +ext_api.webRequest.onBeforeRequest.addListener(function (details) { if (!isSiteEnabled(details)) { return; } @@ -320,9 +322,13 @@ chrome.webRequest.onBeforeRequest.addListener(function (details) { }, ["blocking"]); +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']; -chrome.webRequest.onBeforeSendHeaders.addListener(function(details) { +ext_api.webRequest.onBeforeSendHeaders.addListener(function(details) { var requestHeaders = details.requestHeaders; var header_referer = ''; @@ -336,9 +342,9 @@ chrome.webRequest.onBeforeSendHeaders.addListener(function(details) { // remove cookies for sites medium platform (mainfest.json needs in permissions: ) if (isSiteEnabled({url: '.medium.com'}) && details.url.indexOf('cdn-client.medium.com') !== -1 && header_referer.indexOf('.medium.com') === -1) { var domainVar = new URL(header_referer).hostname; - chrome.cookies.getAll({domain: domainVar}, function(cookies) { + ext_api.cookies.getAll({domain: domainVar}, function(cookies) { for (var i=0; i'] -}, ['blocking', 'requestHeaders', 'extraHeaders']); +}, extraInfoSpec); +// extraInfoSpec is ['blocking', 'requestHeaders'] + possible 'extraHeaders' -chrome.tabs.onUpdated.addListener(updateBadge); -chrome.tabs.onActivated.addListener(updateBadge); +ext_api.tabs.onUpdated.addListener(updateBadge); +ext_api.tabs.onActivated.addListener(updateBadge); function updateBadge() { - chrome.tabs.query({ + ext_api.tabs.query({ active: true, currentWindow: true }, function (arrayOfTabs) { @@ -478,8 +485,8 @@ function updateBadge() { if (!activeTab) return; var textB = getTextB(activeTab.url); - chrome.browserAction.setBadgeBackgroundColor({color: "red"}); - chrome.browserAction.setBadgeText({text: textB}); + ext_api.browserAction.setBadgeBackgroundColor({color: "red"}); + ext_api.browserAction.setBadgeText({text: textB}); }); } @@ -494,30 +501,35 @@ function getTextB(currentUrl) { } // remove cookies after page load -chrome.webRequest.onCompleted.addListener(function (details) { +ext_api.webRequest.onCompleted.addListener(function (details) { for (var domainIndex in remove_cookies) { - var domainVar = remove_cookies[domainIndex]; - if (!enabledSites.includes(domainVar) || details.url.indexOf(domainVar) === -1) { - continue; // don't remove cookies + var domainVar = remove_cookies[domainIndex]; + if (!enabledSites.includes(domainVar) || details.url.indexOf(domainVar) === -1) { + continue; // don't remove cookies + } + 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 + }); + } + }); } - chrome.cookies.getAll({domain: domainVar}, function(cookies) { - for (var i=0; i"] + urls: [""] }); function isSiteEnabled(details) { diff --git a/options.js b/options.js index 06b1502..11e620e 100755 --- a/options.js +++ b/options.js @@ -1,7 +1,7 @@ // defaultSites are loaded from sites.js at installation extension (and are saved to local storage) // var defaultSites = {}; -// Saves options to chrome.storage +// Saves options to ext_api.storage function save_options() { var gh_url = document.getElementById('bypass_sites').value; var inputEls = document.querySelectorAll('#bypass_sites input'); @@ -14,7 +14,7 @@ function save_options() { return memo; }, {}); - chrome.storage.sync.set({ + ext_api.storage.sync.set({ sites: sites }, function() { // Update status to let user know options were saved. @@ -27,21 +27,21 @@ function save_options() { }); // Refresh the current tab - chrome.tabs.query({ + ext_api.tabs.query({ active: true, currentWindow: true }, function (tabs) { if (tabs[0].url && tabs[0].url.indexOf("http") !== -1) { - chrome.tabs.update(tabs[0].id, { + ext_api.tabs.update(tabs[0].id, { url: tabs[0].url }); } }); } -// Restores checkbox input states using the preferences stored in chrome.storage. +// Restores checkbox input states using the preferences stored in ext_api.storage. function renderOptions() { - chrome.storage.sync.get({ + ext_api.storage.sync.get({ sites: {}, sites_custom: {} }, function(items) { var sites = items.sites; diff --git a/options_custom.js b/options_custom.js index 9e562c2..f2e0515 100644 --- a/options_custom.js +++ b/options_custom.js @@ -1,12 +1,13 @@ +var ext_api = chrome || browser; -// Saves options to chrome.storage +// Saves options to ext_api.storage function save_options() { var gh_url = document.getElementById('bypass_sites').value; var textareaEl = document.querySelector('#bypass_sites textarea'); var sites_custom = {}; if (textareaEl.value !== '') var sites_custom = JSON.parse(textareaEl.value); - chrome.storage.sync.set({ + ext_api.storage.sync.set({ sites_custom: sites_custom }, function () { // Update status to let user know custom sites were saved. @@ -22,7 +23,7 @@ function save_options() { // Export custom sites to file function export_options() { - chrome.storage.sync.get({ + ext_api.storage.sync.get({ sites_custom: {} }, function (items) { var result = JSON.stringify(items.sites_custom); @@ -46,7 +47,7 @@ function import_options(e) { function _imp() { let sites_custom = JSON.parse(this.result); - chrome.storage.sync.set({ + ext_api.storage.sync.set({ sites_custom: sites_custom }, function () { // Update status to let user know custom sites were imported. @@ -60,7 +61,7 @@ function _imp() { }); } -// Add custom site to chrome.storage +// Add custom site to ext_api.storage function add_options() { var gh_url = document.getElementById('add_site').value; var inputEls = document.querySelectorAll('#add_site input'); @@ -86,7 +87,7 @@ function add_options() { sites_custom[title]['domain'] = sites_custom[title]['domain'].replace('www.', ''); // add new site to local storage - chrome.storage.sync.get({ + ext_api.storage.sync.get({ sites_custom: {} }, function (items) { var sites_custom_old = items.sites_custom; @@ -95,7 +96,7 @@ function add_options() { sites_custom_old[key] = sites_custom[key]; } - chrome.storage.sync.set({ + ext_api.storage.sync.set({ sites_custom: sites_custom_old }, function () { // Update status to let user know new custom site was added. @@ -109,7 +110,7 @@ function add_options() { }); } -// Delete custom site from chrome.storage +// Delete custom site from ext_api.storage function delete_options() { var gh_url = document.getElementById('custom_sites').value; var selectEl = document.querySelector('#custom_sites select'); @@ -117,13 +118,13 @@ function delete_options() { var remove_key = selectEl.value; // delete site from local storage - chrome.storage.sync.get({ + ext_api.storage.sync.get({ sites_custom: {} }, function (items) { var sites_custom_old = items.sites_custom; delete sites_custom_old[remove_key]; - chrome.storage.sync.set({ + ext_api.storage.sync.set({ sites_custom: sites_custom_old }, function () { // Update status to let user know custom site was deleted. @@ -137,9 +138,9 @@ function delete_options() { }); } -// Restores checkbox input states using the preferences stored in chrome.storage. +// Restores checkbox input states using the preferences stored in ext_api.storage. function renderOptions() { - chrome.storage.sync.get({ + ext_api.storage.sync.get({ sites_custom: {} }, function (items) { var sites_custom = items.sites_custom; diff --git a/version.js b/version.js index 1a842cd..fe59d92 100644 --- a/version.js +++ b/version.js @@ -1,22 +1,24 @@ -var manifestData = chrome.runtime.getManifest(); +var ext_api = chrome || browser; + +var manifestData = ext_api.runtime.getManifest(); var versionString = 'v' + manifestData.version; document.getElementById('version').innerText = versionString; const manifest_new = 'https://raw.githubusercontent.com/magnolia1234/bypass-paywalls-chrome-clean/master/manifest.json'; fetch(manifest_new) - .then(response => { - if (response.ok) { - response.json().then(json => { - var version_new = json['version']; - if (version_new > manifestData.version) { - var versionString_new = document.getElementById('version_new'); - versionString_new.appendChild(document.createTextNode(' | ')); - var anchorEl = document.createElement('a'); - anchorEl.text = 'New release v' + version_new; - anchorEl.href = 'https://github.com/magnolia1234/bypass-paywalls-chrome-clean/releases'; - anchorEl.target = '_blank'; - versionString_new.appendChild(anchorEl); - } - }) - } - }); +.then(response => { + if (response.ok) { + response.json().then(json => { + var version_new = json['version']; + if (version_new > manifestData.version) { + var versionString_new = document.getElementById('version_new'); + versionString_new.appendChild(document.createTextNode(' | ')); + var anchorEl = document.createElement('a'); + anchorEl.text = 'New release v' + version_new; + anchorEl.href = 'https://github.com/magnolia1234/bypass-paywalls-chrome-clean/releases'; + anchorEl.target = '_blank'; + versionString_new.appendChild(anchorEl); + } + }) + } +}); \ No newline at end of file