Skip to content

Commit

Permalink
quick bug fixes and economist added
Browse files Browse the repository at this point in the history
  • Loading branch information
rushilsrivastava committed Sep 24, 2018
1 parent fec444d commit a778b01
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ I made this because as a student, it isn't practical for me to pay each company
* [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/)
6 changes: 4 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "OpenNews",
"version": "0.16",
"version": "0.17",
"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 @@ -71,6 +71,8 @@
"*://*.theage.com.au/*",
"*://.theage.com.au/*",
"*://*.hbr.org/*",
"*://.hbr.org/*"
"*://.hbr.org/*",
"*://*.economist.com/*",
"*://.economist.com/*"
]
}
7 changes: 6 additions & 1 deletion src/js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,18 @@ const sites = {
cookies: true
},
chicagotribune: {
url: "*://*.chicagotribune.com/*"
url: "*://*.chicagotribune.com/*",
cookies: true
},
hbr: {
url: "*://*.hbr.org/*",
js: [
"*://*.hbr.org/resources/js/*"
]
},
economist: {
url: "*://*.economist.com/*",
cookies: true
}
};

Expand Down

0 comments on commit a778b01

Please sign in to comment.