mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-10 08:27:48 +01:00
Fix ft.com
This commit is contained in:
parent
1eb54e5834
commit
3eda05a696
5 changed files with 7 additions and 7 deletions
|
@ -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.
|
||||
|
|
|
@ -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/';
|
||||
|
|
|
@ -44,5 +44,5 @@
|
|||
"webRequest",
|
||||
"webRequestBlocking"
|
||||
],
|
||||
"version": "1.5.0"
|
||||
"version": "1.5.1"
|
||||
}
|
|
@ -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',
|
||||
|
|
|
@ -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" }
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue