-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
57 lines (49 loc) · 1.42 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
49
50
51
52
53
54
55
56
57
{
"manifest_version": 3,
"name": "Paywall X-ray",
"version": "0.7.0",
"description": "Reads content behind fake paywalls.",
"icons" : {
},
"action": {
"default_popup": "src/popup.html",
"default_title": "Paywall X-ray"
},
"author": "Hacktoolkit (@hacktoolkit)",
"content_scripts": [
{
"matches": [
"https://fortune.com/*",
"https://platformer.news/*",
"https://www.bbc.com/*",
"https://www.bloomberg.com/*",
"https://www.businessinsider.com/*",
"https://www.economist.com/*",
"https://www.flexpackmag.com/*",
"https://www.ft.com/*",
"https://www.law360.com/*",
"https://www.nytimes.com/*",
"https://www.ocregister.com/*",
"https://www.theepochtimes.com/*",
"https://www.thetimes.co.uk/*",
"https://www.smh.com.au/*",
"https://www.washingtonpost.com/*",
"https://www.wired.com/*",
"https://www.wsj.com/*"
],
"css": [],
"js": [
"src/vendor/jquery-3.5.1.min.js",
"src/vendor/lodash-4.17.20.min.js",
"src/js/xray.js"
]
}
],
"options_ui": {
"page": "src/options.html"
},
"permissions": [
"tabs"
],
"short_name": "Paywall X-ray"
}