From 1aee1be20b39e086f1e764f772991f1d3c5ee734 Mon Sep 17 00:00:00 2001 From: magnolia1234 <54500520+magnolia1234@users.noreply.github.com> Date: Tue, 22 Oct 2019 14:37:02 +0200 Subject: [PATCH] Fix Wsj with googlebot & mod=rsswn obsolete --- background.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/background.js b/background.js index da89538..76424e1 100644 --- a/background.js +++ b/background.js @@ -167,10 +167,12 @@ const remove_cookies = [ // Override User-Agent with Googlebot const use_google_bot = [ -'theaustralian.com.au', -'telegraph.co.uk', -'thetimes.co.uk', 'barrons.com', +'nytimes.com', +'telegraph.co.uk', +'theaustralian.com.au', +'thetimes.co.uk', +'wsj.com', ] function setDefaultOptions() { @@ -226,6 +228,7 @@ browser.runtime.onInstalled.addListener(function(details) { } }); +/** // WSJ bypass browser.webRequest.onBeforeSendHeaders.addListener(function(details) { if (!isSiteEnabled(details) || details.url.indexOf("mod=rsswn") !== -1 || details.url.indexOf("/print-edition/") !== -1) { @@ -248,6 +251,7 @@ browser.webRequest.onBeforeSendHeaders.addListener(function(details) { {urls:["*://*.wsj.com/*"], types:["main_frame"]}, ["blocking"] ); +**/ // Disable javascript for these sites chrome.webRequest.onBeforeRequest.addListener(function(details) {