forked from cezary/bypass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (48 loc) · 1.06 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "Bypass",
"version": "0.0.15",
"manifest_version": 2,
"description": "Read news articles behind paywalls",
"icons": {
"128": "bypass.png"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"*://*.baltimoresun.com/",
"*://*.barrons.com/",
"*://*.chicagobusiness.com/",
"*://*.chicagotribune.com/",
"*://*.dailypress.com/",
"*://*.economist.com/",
"*://*.ft.com/",
"*://*.courant.com/",
"*://*.hbr.org/",
"*://*.inc.com/",
"*://*.jacksonville.com/",
"*://*.latimes.com/",
"*://*.mcall.com/",
"*://*.medscape.com/",
"*://*.newyorker.com/",
"*://*.orlandosentinel.com/",
"*://*.quora.com/",
"*://*.telegraph.co.uk/",
"*://*.theage.com.au/",
"*://*.thenation.com/",
"*://*.tribdss.com/",
"*://*.smh.com.au/",
"*://*.sun-sentinel.com/",
"*://*.washingtonpost.com/",
"*://*.wsj.com/",
"storage",
"webRequest",
"webRequestBlocking"
]
}