mirror of
https://gitlab.com/magnolia1234/bypass-paywalls-firefox-clean.git
synced 2024-11-10 09:47:49 +01:00
Add denverpost.com and hacked.com
This commit is contained in:
parent
02232fc2ff
commit
f3f0328df6
6 changed files with 17 additions and 6 deletions
|
@ -13,10 +13,12 @@ Chicago Tribune (chicagotribune.com)\
|
||||||
Corriere Della Sera (corriere.it)\
|
Corriere Della Sera (corriere.it)\
|
||||||
Daily Press (dailypress.com)\
|
Daily Press (dailypress.com)\
|
||||||
Dagens Nyheter (dn.se)\
|
Dagens Nyheter (dn.se)\
|
||||||
|
Denver Post (denverpost.com)\
|
||||||
The Economist (economist.com)\
|
The Economist (economist.com)\
|
||||||
Financial Times (ft.com)\
|
Financial Times (ft.com)\
|
||||||
Glassdoor (glassdoor.com)\
|
Glassdoor (glassdoor.com)\
|
||||||
Haaretz (haaretz.co.il / haaretz.com)\
|
Haaretz (haaretz.co.il / haaretz.com)\
|
||||||
|
Hacked (hacked.com)\
|
||||||
Hartford Courant (courant.com)\
|
Hartford Courant (courant.com)\
|
||||||
Harvard Business Review (hbr.org)\
|
Harvard Business Review (hbr.org)\
|
||||||
Het Financieele Dagblad (fd.nl)\
|
Het Financieele Dagblad (fd.nl)\
|
||||||
|
@ -49,4 +51,5 @@ Wired (wired.com)
|
||||||
|
|
||||||
### Troubleshooting
|
### Troubleshooting
|
||||||
|
|
||||||
If WSJ stops working try removing all wsj.com site cookies.
|
If WSJ stops working try removing all wsj.com site cookies.\
|
||||||
|
For The Denver Post turn off uBlock.
|
|
@ -10,11 +10,13 @@ var defaultSites = {
|
||||||
'Corriere Della Sera': 'corriere.it',
|
'Corriere Della Sera': 'corriere.it',
|
||||||
'Daily Press': 'dailypress.com',
|
'Daily Press': 'dailypress.com',
|
||||||
'Dagens Nyheter': 'dn.se',
|
'Dagens Nyheter': 'dn.se',
|
||||||
|
'Denver Post': 'denverpost.com',
|
||||||
'The Economist': 'economist.com',
|
'The Economist': 'economist.com',
|
||||||
'Financial Times': 'ft.com',
|
'Financial Times': 'ft.com',
|
||||||
'Glassdoor': 'glassdoor.com',
|
'Glassdoor': 'glassdoor.com',
|
||||||
'Haaretz': 'haaretz.co.il',
|
'Haaretz': 'haaretz.co.il',
|
||||||
'Haaretz English': 'haaretz.com',
|
'Haaretz English': 'haaretz.com',
|
||||||
|
'Hacked': 'hacked.com',
|
||||||
'Hartford Courant': 'courant.com',
|
'Hartford Courant': 'courant.com',
|
||||||
'Harvard Business Review': 'hbr.org',
|
'Harvard Business Review': 'hbr.org',
|
||||||
'Het Financieele Dagblad': 'fd.nl',
|
'Het Financieele Dagblad': 'fd.nl',
|
||||||
|
@ -62,7 +64,9 @@ const allow_cookies = [
|
||||||
'theage.com.au',
|
'theage.com.au',
|
||||||
'economist.com',
|
'economist.com',
|
||||||
'bostonglobe.com',
|
'bostonglobe.com',
|
||||||
'washingtonpost.com'
|
'washingtonpost.com',
|
||||||
|
'denverpost.com',
|
||||||
|
'hacked.com'
|
||||||
]
|
]
|
||||||
|
|
||||||
// Removes cookies after page load
|
// Removes cookies after page load
|
||||||
|
@ -75,7 +79,9 @@ const remove_cookies = [
|
||||||
'theage.com.au',
|
'theage.com.au',
|
||||||
'economist.com',
|
'economist.com',
|
||||||
'bostonglobe.com',
|
'bostonglobe.com',
|
||||||
'washingtonpost.com'
|
'washingtonpost.com',
|
||||||
|
'denverpost.com',
|
||||||
|
'hacked.com'
|
||||||
]
|
]
|
||||||
|
|
||||||
function setDefaultOptions() {
|
function setDefaultOptions() {
|
||||||
|
@ -83,7 +89,6 @@ function setDefaultOptions() {
|
||||||
sites: defaultSites
|
sites: defaultSites
|
||||||
}, function() {
|
}, function() {
|
||||||
browser.runtime.openOptionsPage();
|
browser.runtime.openOptionsPage();
|
||||||
// browser.tabs.create({ 'url': 'browser://extensions/?options=' + browser.runtime.id });
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
Updates--
|
Updates--
|
||||||
|
|
||||||
|
2018-07-04 v1.3.0: Added The Denver Post (denverpost.com, note: need to turn off uBlock for this site), added Hacked (hacked.com)
|
||||||
2018-06-20 v1.2.10: Added The Business Journals (bizjournals.com)
|
2018-06-20 v1.2.10: Added The Business Journals (bizjournals.com)
|
||||||
2018-06-27 v1.2.9: Fixed The Washington Post (washingtonpost.com)
|
2018-06-27 v1.2.9: Fixed The Washington Post (washingtonpost.com)
|
||||||
2018-06-22 v1.2.8: Added Vanity Fair (vanityfair.com), added The Globe and Mail (theglobeandmail.com)
|
2018-06-22 v1.2.8: Added Vanity Fair (vanityfair.com), added The Globe and Mail (theglobeandmail.com)
|
||||||
|
|
|
@ -43,5 +43,5 @@
|
||||||
"webRequest",
|
"webRequest",
|
||||||
"webRequestBlocking"
|
"webRequestBlocking"
|
||||||
],
|
],
|
||||||
"version": "1.2.10"
|
"version": "1.3.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,11 +8,13 @@ var defaultSites = {
|
||||||
'Corriere Della Sera': 'corriere.it',
|
'Corriere Della Sera': 'corriere.it',
|
||||||
'Daily Press': 'dailypress.com',
|
'Daily Press': 'dailypress.com',
|
||||||
'Dagens Nyheter': 'dn.se',
|
'Dagens Nyheter': 'dn.se',
|
||||||
|
'Denver Post': 'denverpost.com',
|
||||||
'The Economist': 'economist.com',
|
'The Economist': 'economist.com',
|
||||||
'Financial Times': 'ft.com',
|
'Financial Times': 'ft.com',
|
||||||
'Glassdoor': 'glassdoor.com',
|
'Glassdoor': 'glassdoor.com',
|
||||||
'Haaretz': 'haaretz.co.il',
|
'Haaretz': 'haaretz.co.il',
|
||||||
'Haaretz English': 'haaretz.com',
|
'Haaretz English': 'haaretz.com',
|
||||||
|
'Hacked': 'hacked.com',
|
||||||
'Hartford Courant': 'courant.com',
|
'Hartford Courant': 'courant.com',
|
||||||
'Harvard Business Review': 'hbr.org',
|
'Harvard Business Review': 'hbr.org',
|
||||||
'Het Financieele Dagblad': 'fd.nl',
|
'Het Financieele Dagblad': 'fd.nl',
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<body>
|
<body>
|
||||||
<div style="width:220px;">Bypass Paywalls v1.2.10 by Adam
|
<div style="width:220px;">Bypass Paywalls v1.3.0 by Adam
|
||||||
<a href="options.html">Options</a></div>
|
<a href="options.html">Options</a></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue