Skip to content

Commit

Permalink
release v0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
rushilsrivastava committed Aug 18, 2018
1 parent 9ccdbf9 commit 6755c74
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,8 @@ I made this because as a student, it isn't practical for me to pay each company
* [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/)
10 changes: 8 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "OpenNews",
"version": "0.14",
"version": "0.15",
"manifest_version": 2,
"description": "Get around the paywall for many news sites, and experience an open, free web.",
"author": "Rushil Srivastava",
Expand Down Expand Up @@ -64,6 +64,12 @@
"*://*.medium.com/*",
"*://.medium.com/*",
"*://*.bostonglobe.com/*",
"*://.bostonglobe.com/*"
"*://.bostonglobe.com/*",
"*://*.newyorker.com/*",
"*://.newyorker.com/*",
"*://*.theage.com.au/*",
"*://.theage.com.au/*",
"*://*.hbr.org/*",
"*://.hbr.org/*"
]
}
23 changes: 23 additions & 0 deletions src/js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,29 @@ const sites = {
js: [
"*://meter.bostonglobe.com/js/meter.js"
]
},
newyorker: {
url: "*://*.newyorker.com/*",
cookies: true
},
latimes: {
url: "*://*.latimes.com/*",
js: [
"*://*.tribdss.com/meter/*"
]
},
theage: {
url: "*://*.theage.com.au/*",
cookies: true
},
chicagotribune: {
url: "*://*.chicagotribune.com/*"
},
hbr: {
url: "*://*.hbr.org/*",
js: [
"*://*.hbr.org/resources/js/*"
]
}
};

Expand Down

0 comments on commit 6755c74

Please sign in to comment.