-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
80 lines (77 loc) · 2.87 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"manifest_version": 2,
"name": "arXiv keys",
"description": "Adds keyboard navigation keys to the arXiv.",
"version": "0.9.6",
"icons": { "48": "icon48.png",
"128": "icon128.png" },
"content_scripts": [
{
"matches": ["*://arxiv.org/*",
"*://*.arxiv.org/*",
"*://arxiv-web1.library.cornell.edu/*",
"*://arxiv-web2.library.cornell.edu/*",
"*://arxiv-web3.library.cornell.edu/*",
"*://xxx.lanl.gov/*"],
"exclude_matches": ["*://*/*.pdf"],
"css": ["jquery-ui.min.css","arXiv-keys.css"],
"js": ["jquery-3.3.1.min.js","jquery-ui.min.js",
"categories.js","goto-box.js","arXiv-keys.js"]
},
{
"matches": ["*://arxiv.org/*",
"*://*.arxiv.org/*",
"*://arxiv-web1.library.cornell.edu/*",
"*://arxiv-web2.library.cornell.edu/*",
"*://arxiv-web3.library.cornell.edu/*",
"*://xxx.lanl.gov/*"],
"exclude_matches": ["*://*/*.pdf"],
"include_globs": ["*://*/abs/*"],
"js": ["abs.js"]
},
{
"matches": ["*://arxiv.org/*",
"*://*.arxiv.org/*",
"*://arxiv-web1.library.cornell.edu/*",
"*://arxiv-web2.library.cornell.edu/*",
"*://arxiv-web3.library.cornell.edu/*",
"*://xxx.lanl.gov/*"],
"exclude_matches": ["*://*/*.pdf"],
"include_globs": ["*://*/list*"],
"js": ["list-find-items.js","list.js"]
},
{
"matches": ["*://arxiv.org/*",
"*://*.arxiv.org/*",
"*://arxiv-web1.library.cornell.edu/*",
"*://arxiv-web2.library.cornell.edu/*",
"*://arxiv-web3.library.cornell.edu/*",
"*://xxx.lanl.gov/*"],
"exclude_matches": ["*://*/*.pdf"],
"include_globs": ["*://*/find*","*://*/a/*"],
"js": ["list-find-items.js","find.js"]
},
{
"matches": ["*://arxiv.org/*",
"*://*.arxiv.org/*",
"*://arxiv-web1.library.cornell.edu/*",
"*://arxiv-web2.library.cornell.edu/*",
"*://arxiv-web3.library.cornell.edu/*",
"*://xxx.lanl.gov/*"],
"exclude_matches": ["*://*/*.pdf"],
"include_globs": ["*://*/search*"],
"js": ["search.js"]
},
{
"matches": ["*://arxiv.org/*",
"*://*.arxiv.org/*",
"*://arxiv-web1.library.cornell.edu/*",
"*://arxiv-web2.library.cornell.edu/*",
"*://arxiv-web3.library.cornell.edu/*",
"*://xxx.lanl.gov/*"],
"exclude_matches": ["*://*/*.pdf"],
"include_globs": ["*://*/catchup*", "*://*/refs*", "*://*/cits*"],
"js": ["list-find-items.js"]
}
]
}