mirror of
https://github.com/iamadamdev/bypass-paywalls-chrome
synced 2025-05-05 17:34:26 +02:00
Merge pull request #2 from ohadcn/master
Add haaretz.com (Haaretz English)
This commit is contained in:
commit
d65a671d3d
@ -20,7 +20,7 @@ Dagens Nyheter (dn.se)\
|
|||||||
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.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)\
|
||||||
|
@ -13,6 +13,7 @@ var defaultSites = {
|
|||||||
'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',
|
||||||
'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,5 +1,6 @@
|
|||||||
Updates--
|
Updates--
|
||||||
2018-04-07 v1.2.1: Fixed The Economist (economist.com)
|
2018-04-23 v1.2.2: Added the English Version of Haaretz website (haaretz.com)
|
||||||
|
2018-04-07 v1.2.1: Open Source'd Bypass Paywalls! Fixed The Economist (economist.com)
|
||||||
2018-04-05 v1.2.0: added Corriere Della Sera (corriere.it), added Dagens Nyheter (dn.se), fixed The Age (theage.com.au)
|
2018-04-05 v1.2.0: added Corriere Della Sera (corriere.it), added Dagens Nyheter (dn.se), fixed The Age (theage.com.au)
|
||||||
2018-01-30 v1.0.7: Added Medium (medium.com), added The Boston Globe (bostonglobe.com), added The Mercury News (mercurynews.com), removed The Australian (theaustralian.com.au), removed The Courier Mail (couriermail.com.au), removed The Telegraph (telegraph.co.uk)
|
2018-01-30 v1.0.7: Added Medium (medium.com), added The Boston Globe (bostonglobe.com), added The Mercury News (mercurynews.com), removed The Australian (theaustralian.com.au), removed The Courier Mail (couriermail.com.au), removed The Telegraph (telegraph.co.uk)
|
||||||
2017-09-14 v1.06: Added back Barron's, added Het Financieele Dagblad (fd.nl), added Le Temps (letemps.ch), added Haaretz (haaretz.co.il)
|
2017-09-14 v1.06: Added back Barron's, added Het Financieele Dagblad (fd.nl), added Le Temps (letemps.ch), added Haaretz (haaretz.co.il)
|
||||||
@ -23,7 +24,7 @@ Dagens Nyheter (dn.se)
|
|||||||
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.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)
|
||||||
|
@ -18,5 +18,5 @@
|
|||||||
"page": "options.html"
|
"page": "options.html"
|
||||||
},
|
},
|
||||||
"permissions": [ "cookies", "<all_urls>", "storage", "webRequest", "webRequestBlocking"],
|
"permissions": [ "cookies", "<all_urls>", "storage", "webRequest", "webRequestBlocking"],
|
||||||
"version": "1.2.1"
|
"version": "1.2.2"
|
||||||
}
|
}
|
||||||
|
@ -11,6 +11,7 @@ var defaultSites = {
|
|||||||
'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',
|
||||||
'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.1 by Adam
|
<div style="width:220px;">Bypass Paywalls v1.2.2 by Adam
|
||||||
<br><a href="options.html">Options</a></div>
|
<br><a href="options.html">Options</a></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user