diff --git a/README.md b/README.md index dbaaa1f..1199872 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Bypass Paywalls for Firefox -## [Download and install the latest version](https://github.com/iamadamdev/bypass-paywalls-firefox/releases/download/v1.5.0/bypass_paywalls-1.5.0-an+fx.xpi) +## [Download and install the latest version](https://github.com/iamadamdev/bypass-paywalls-firefox/releases/download/v1.5.1/bypass_paywalls-1.5.1-an+fx.xpi) ### 2019-02-10: WSJ bypass fixed! @@ -42,7 +42,6 @@ MIT Technology Review (technologyreview.com)\ Mountain View Voice (mv-voice.com)\ New Statesman (newstatesman.com)\ New York Magazine (nymag.com)\ -Newsrep (thenewsrep.com)\ Nikkei Asian Review (asia.nikkei.com)\ NRC (nrc.nl)\ Orange County Register (ocregister.com)\ @@ -76,6 +75,7 @@ Vanity Fair (vanityfair.com)\ Wired (wired.com) ### New site requests: +Only large or major sites will be considered. No small sites or local newspapers. 1. Visit an article on the site you want to bypass the paywall for and copy the article title. 2. Open up a new Private window (Ctrl+Shift+P) and paste the article title into Google. 3. Click on the same article from the Google search results page. If it loads without a paywall you can [submit a request](https://github.com/iamadamdev/bypass-paywalls-firefox/issues/new) to add the site, otherwise my extension cannot bypass it either. diff --git a/background.js b/background.js index d401499..a618194 100644 --- a/background.js +++ b/background.js @@ -37,7 +37,6 @@ var defaultSites = { 'Mountain View Voice': 'mv-voice.com', 'New Statesman': 'newstatesman.com', 'New York Magazine': 'nymag.com', - 'Newsrep': 'thenewsrep.com', 'Nikkei Asian Review': 'asia.nikkei.com', 'NRC': 'nrc.nl', 'Orange County Register': 'ocregister.com', @@ -230,7 +229,7 @@ browser.webRequest.onBeforeSendHeaders.addListener(function(details) { // 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 (details.url.indexOf("wsj.com") !== -1) { + } else if (details.url.indexOf("wsj.com") !== -1 || details.url.indexOf("ft.com") !== -1) { requestHeader.value = 'https://www.facebook.com/'; } else { requestHeader.value = 'https://www.google.com/'; diff --git a/manifest.json b/manifest.json index 920815e..27fecbe 100644 --- a/manifest.json +++ b/manifest.json @@ -44,5 +44,5 @@ "webRequest", "webRequestBlocking" ], - "version": "1.5.0" + "version": "1.5.1" } \ No newline at end of file diff --git a/options.js b/options.js index 324f766..cd502c6 100644 --- a/options.js +++ b/options.js @@ -35,7 +35,6 @@ var defaultSites = { 'Mountain View Voice': 'mv-voice.com', 'New Statesman': 'newstatesman.com', 'New York Magazine': 'nymag.com', - 'Newsrep': 'thenewsrep.com', 'Nikkei Asian Review': 'asia.nikkei.com', 'NRC': 'nrc.nl', 'Orange County Register': 'ocregister.com', diff --git a/updates.json b/updates.json index f62b4dc..25c59ab 100644 --- a/updates.json +++ b/updates.json @@ -14,7 +14,9 @@ { "version": "1.4.9", "update_link": "https://github.com/iamadamdev/bypass-paywalls-firefox/releases/download/v1.4.9/bypass_paywalls-1.4.9-an+fx.xpi" }, { "version": "1.5.0", - "update_link": "https://github.com/iamadamdev/bypass-paywalls-firefox/releases/download/v1.5.0/bypass_paywalls-1.5.0-an+fx.xpi" } + "update_link": "https://github.com/iamadamdev/bypass-paywalls-firefox/releases/download/v1.5.0/bypass_paywalls-1.5.0-an+fx.xpi" }, + { "version": "1.5.1", + "update_link": "https://github.com/iamadamdev/bypass-paywalls-firefox/releases/download/v1.5.1/bypass_paywalls-1.5.1-an+fx.xpi" } ] } }