Skip to content

Commit

Permalink
final commit for version 0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
rushilsrivastava committed Dec 3, 2018
1 parent 09175f6 commit 20b6c96
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 14 deletions.
32 changes: 20 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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!
14 changes: 13 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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/*"
]
}
2 changes: 1 addition & 1 deletion src/html/popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
25 changes: 25 additions & 0 deletions src/js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
};

Expand Down

0 comments on commit 20b6c96

Please sign in to comment.