diff --git a/README.md b/README.md deleted file mode 100644 index 1494cc0..0000000 --- a/README.md +++ /dev/null @@ -1,43 +0,0 @@ -"# README" -Updates-- -2017-06-15 v1.08: Added browser_action icon, removed Barron's, fixed Financial Times (ft.com), added options link to popup -2017-05-14: Ported to Firefox -2017-04-16: Added MIT Technology Review (technologyreview.com), NRC (nrc.nl), The Courier Mail (couriermail.com.au). -2017-04-05: Added 'Nikkei Asian Review'. -2017-02-25: If you are trying to view NYT articles or tired of the WSJ popup, try installing an adblocker (I recommend 'uBlock Origin'). -2017-02-16: Added 'The Australian'. -2017-02-09: WSJ working again (bypass paywall)! Also added glassdoor, nytimes, seattletimes. - -Bypass the following sites' paywalls: - -The Age (theage.com.au) -The Australian (theaustralian.com.au) -Baltimore Sun (baltimoresun.com) -Barron's (barrons.com) -Crain's Chicago Business (chicagobusiness.com) -Chicago Tribune (chicagotribune.com) -Daily Press (dailypress.com) -The Economist (economist.com) -Financial Times (ft.com) -Glassdoor (glassdoor.com) -Hartford Courant (courant.com) -Harvard Business Review (hbr.org) -Inc.com (inc.com) -Los Angeles Times (latimes.com) -Medscape (medscape.com) -MIT Technology Review (technologyreview.com) -Nikkei Asian Review (asia.nikkei.com) -NRC (nrc.nl) -The Courier Mail (couriermail.com.au) -The Morning Call (mcall.com) -The Nation (thenation.com) -The New York Times (nytimes.com) -The New Yorker (newyorker.com) -OrlandoSentinel (orlandosentinel.com) -Quora (quora.com) -SunSentinel (sun-sentinel.com) -The Seattle Times (seattletimes.com) -The Sydney Morning Herald (smh.com.au) -The Telegraph (telegraph.co.uk) -The Washington Post (washingtonpost.com) -The Wall Street Journal (wsj.com) \ No newline at end of file diff --git a/background.js b/background.js index 3e66afc..84c5ce5 100644 --- a/background.js +++ b/background.js @@ -4,15 +4,19 @@ var defaultSites = { 'The Age': 'theage.com.au', 'The Australian': 'theaustralian.com.au', 'Baltimore Sun': 'baltimoresun.com', + 'Barron\'s': 'barrons.com', 'Crain\'s Chicago Business': 'chicagobusiness.com', 'Chicago Tribune': 'chicagotribune.com', 'Daily Press': 'dailypress.com', 'The Economist': 'economist.com', 'Financial Times': 'ft.com', 'Glassdoor': 'glassdoor.com', + 'Haaretz': 'haaretz.co.il', 'Hartford Courant': 'courant.com', 'Harvard Business Review': 'hbr.org', + 'Het Financieele Dagblad': 'fd.nl', 'Inc.com': 'inc.com', + 'Le Temps': 'letemps.ch', 'Los Angeles Times': 'latimes.com', 'Medscape': 'medscape.com', 'MIT Technology Review': 'technologyreview.com', @@ -44,7 +48,9 @@ var allow_cookies = [ 'nytimes.com', 'wsj.com', 'couriermail.com.au', -'ft.com' +'ft.com', +'letemps.ch', +'fd.nl' ] // Removes cookies after page load @@ -52,7 +58,9 @@ var remove_cookies = [ 'theaustralian.com.au', 'asia.nikkei.com', 'couriermail.com.au', -'ft.com' +'ft.com', +'letemps.ch', +'fd.nl' ] function setDefaultOptions() { diff --git a/changelog.txt b/changelog.txt index c4a7069..74d7c6e 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,5 @@ Updates-- +2017-09-14 v1.09: Added back Barron's, added Het Financieele Dagblad (fd.nl), added Le Temps (letemps.ch), added Haaretz (haaretz.co.il) 2017-06-15 v1.08: Added browser_action icon, removed Barron's, fixed Financial Times (ft.com), added options link to popup 2017-05-14: Ported to Firefox 2017-04-16: Added MIT Technology Review (technologyreview.com), NRC (nrc.nl), The Courier Mail (couriermail.com.au). @@ -19,9 +20,12 @@ Daily Press (dailypress.com) The Economist (economist.com) Financial Times (ft.com) Glassdoor (glassdoor.com) +Haaretz (haaretz.co.il) Hartford Courant (courant.com) Harvard Business Review (hbr.org) +Het Financieele Dagblad (fd.nl) Inc.com (inc.com) +Le Temps (letemps.ch) Los Angeles Times (latimes.com) Medscape (medscape.com) MIT Technology Review (technologyreview.com) diff --git a/manifest.json b/manifest.json index 665bd40..275f9e1 100644 --- a/manifest.json +++ b/manifest.json @@ -25,5 +25,5 @@ }, "permissions": [ "cookies", "", "storage", "webRequest", "webRequestBlocking"], - "version": "1.0.8" + "version": "1.0.9" } diff --git a/options.js b/options.js index a702bbd..55b77b7 100644 --- a/options.js +++ b/options.js @@ -2,15 +2,19 @@ var defaultSites = { 'The Age': 'theage.com.au', 'The Australian': 'theaustralian.com.au', 'Baltimore Sun': 'baltimoresun.com', + 'Barron\'s': 'barrons.com', 'Crain\'s Chicago Business': 'chicagobusiness.com', 'Chicago Tribune': 'chicagotribune.com', 'Daily Press': 'dailypress.com', 'The Economist': 'economist.com', 'Financial Times': 'ft.com', 'Glassdoor': 'glassdoor.com', + 'Haaretz': 'haaretz.co.il', 'Hartford Courant': 'courant.com', 'Harvard Business Review': 'hbr.org', + 'Het Financieele Dagblad': 'fd.nl', 'Inc.com': 'inc.com', + 'Le Temps': 'letemps.ch', 'Los Angeles Times': 'latimes.com', 'Medscape': 'medscape.com', 'MIT Technology Review': 'technologyreview.com',