-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (41 loc) · 1.04 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
{
"name": "dblp highlighter",
"version": "1.0",
"description": "Highlight CCFA/B/C in dblp.org",
"manifest_version": 3,
"action": {
"default_icon": {
"260": "images/phd.png"
},
"default_title": "dblp highlighter",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://dblp.org/*",
"https://dblp.uni-trier.de/*",
"https://dblp.dagstuhl.de/*"
],
"js": ["jquery.min.js", "jquery.csv.js", "highlight.js"]
}
],
"host_permissions": [
"https://dblp.org/*",
"https://dblp.uni-trier.de/*",
"https://dblp.dagstuhl.de/*"
],
"permissions": [
"tabs"
],
"web_accessible_resources": [
{
"resources": [ "database.csv"],
"matches": [
"https://dblp.org/*",
"https://dblp.uni-trier.de/*",
"https://dblp.dagstuhl.de/*"
]
}
]
}