-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmanifest.json
More file actions
36 lines (36 loc) · 796 Bytes
/
manifest.json
File metadata and controls
36 lines (36 loc) · 796 Bytes
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
{
"name": "arxiv -> ar5iv",
"description": "Automatically replace arxiv links with ar5iv",
"version": "1.0.0.2",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "icon128.png"
},
"permissions": [
"storage",
"declarativeNetRequestWithHostAccess"
],
"host_permissions": [
"*://arxiv.org/*",
"*://www.arxiv.org/*",
"*://ar5iv.org/*",
"*://ar5iv.labs.arxiv.org/*",
"*://www.ar5iv.org/*"
],
"declarative_net_request": {
"rule_resources": [{
"id": "arxiv_to_ar5iv",
"enabled": true,
"path": "arxiv_to_ar5iv.json"
},
{
"id": "ar5iv_to_arxiv",
"enabled": true,
"path": "ar5iv_to_arxiv.json"
}]
},
"icons": {"128": "icon128.png"}
}