-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (41 loc) · 980 Bytes
/
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
{
"name": "News Paywall to Archive",
"description": "Automatically forward some news pages to archive.*",
"manifest_version": 3,
"version": "1.0",
"icons": {
"128": "img/default.png"
},
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"https://archive.ph/http*",
"https://archive.ph/?url=*"
],
"js": ["archive_cs.js"],
"run_at": "document_end"
},
{
"matches": [
"https://www.bloomberg.com/*",
"https://www.forbes.com/*",
"https://foreignpolicy.com/*",
"https://www.heraldsun.com.au/*",
"https://www.nationalgeographic.com/*",
"https://www.nytimes.com/*",
"https://www.telegraph.co.uk/*",
"https://www.theaustralian.com.au/*",
"https://www.theepochtimes.com/*",
"https://www.thetimes.co.uk/*",
"https://www.washingtonpost.com/*",
"https://www.washingtontimes.com/*",
"https://www.wsj.com/*"
],
"js": ["sites_cs.js"],
"run_at": "document_start"
}
]
}