diff --git a/README.md b/README.md index 7b72183..1dbb745 100755 --- a/README.md +++ b/README.md @@ -21,10 +21,10 @@ I made this because as a student, it isn't practical for me to pay each company 5. Enjoy! 6. Check back here from time to time to see if a new update has been published. Autoupdate should work now, but it's always helpful to check out! -### Supported Websites: +### Supported Tested Websites: * [Wall Street Journal](https://www.wsj.com/) * [New York Times](https://www.nytimes.com/) -* [Cooking New York Times](https://cooking.nytimes.com/) +* [Cooking New York Times](https://cooking.nytimes.com/) * [Financial Times](https://www.ft.com/) * [Bloomberg](https://www.bloomberg.com/) * [Washington Post](https://www.washingtonpost.com) @@ -34,13 +34,21 @@ I made this because as a student, it isn't practical for me to pay each company * [The Globe and Mail](https://www.theglobeandmail.com/) * [New York Daily News](http://www.nydailynews.com/) * [Mercury News](https://www.mercurynews.com/) -* [Wired](https://wired.com/) -* [Medium](https://medium.com/) -* [Boston Globe](https://bostonglobe.com/) -* [New Yorker](https://www.newyorker.com/) -* [LA Times](http://latimes.com/) -* [The Age](https://www.theage.com.au/) -* [Chicago Tribune](http://www.chicagotribune.com/) -* [Harvard Business Review](https://hbr.org/) -* [The Economist](https://www.economist.com/) -* [Seattle Times](https://www.seattletimes.com/) +* [Wired](https://wired.com/) +* [Medium](https://medium.com/) +* [Boston Globe](https://bostonglobe.com/) +* [New Yorker](https://www.newyorker.com/) +* [LA Times](http://latimes.com/) +* [The Age](https://www.theage.com.au/) +* [Chicago Tribune](http://www.chicagotribune.com/) +* [Harvard Business Review](https://hbr.org/) +* [The Economist](https://www.economist.com/) +* [Seattle Times](https://www.seattletimes.com/) +* [Dagens Nyheter](https://dn.se) +* [Barrons](https://www.barrons.com/) +* [Daily Press](https://www.dailypress.com/) +* [Denver Post](https://www.denverpost.com/) +* [Dynamed Plus](http://www.dynamed.com/) +* [New Yorker](https://www.newyorker.com/) + +Plus many other sites. See a website OpenNews is already blocking not listed here, or want a specific site supported? Open a issue! diff --git a/manifest.json b/manifest.json index 0a3b02f..590d6ba 100755 --- a/manifest.json +++ b/manifest.json @@ -78,6 +78,18 @@ "*://*.seattletimes.com/*", "*://.seattletimes.com/*", "*://*.matheranalytics.com/*", - "*://.matheranalytics.com/*" + "*://.matheranalytics.com/*", + "*://*.dn.se/*", + "*://.dn.se/*", + "*://*.barrons.com/*", + "*://.barrons.com/*", + "*://*.dailypress.com/*", + "*://.dailypress.com/*", + "*://*.denverpost.com/*", + "*://.denverpost.com/*", + "*://*.dynamed.com/*", + "*://.dynamed.com/*", + "*://*.newyorker.com/*", + "*://.newyorker.com/*" ] } diff --git a/src/html/popup.html b/src/html/popup.html index 2c9be01..bccead4 100644 --- a/src/html/popup.html +++ b/src/html/popup.html @@ -11,7 +11,7 @@ min-width: 275px; max-height: 300px; height: 100%; - background-image: linear-gradient(to bottom, #86a7d8, #6392de, #417be2, #1f63e3, #0648e0); + background-image: linear-gradient(to bottom, #86a7d8, #678bc9, #4b70b9, #3055a8, #123a96); background-repeat: no-repeat; background-attachment: fixed; text-align: center; diff --git a/src/js/background.js b/src/js/background.js index f7cf08c..b10cf32 100755 --- a/src/js/background.js +++ b/src/js/background.js @@ -104,6 +104,31 @@ const sites = { url: "*://*.seattletimes.com/*", js: ["*://*.matheranalytics.com/*"], cookies: true + }, + dn: { + url: "*://*.dn.se/*", + js: ["*://auth.dn.se/*"] + }, + barrons: { + url: "*://*.barrons.com/*", + cookies: true + }, + dailypress: { + url: "*://*.dailypress.com/*", + js: ["*://*.tribdss.com/meter/*"] + }, + denverpost: { + url: "*://*.denverpost.com/*", + js: ["*://*.matheranalytics.com/*"], + cookies: true + }, + dynamed: { + url: "*://*.dynamed.com/*", + cookies: true + }, + newyorker: { + url: "*://*.newyorker.com/*", + cookies: true } };