-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
53 lines (53 loc) · 1.41 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
{
"name" : "Bionomia",
"version" : "1.2.0",
"description" : "Adjust GBIF occurrence and dataset pages to include material from Bionomia.",
"minimum_chrome_version" : "18",
"manifest_version" : 2,
"icons" : {
"16" : "images/icon-16.png",
"48" : "images/icon-48.png",
"128" : "images/icon-128.png"
},
"default_locale" : "en",
"browser_action" : {
"default_title" : "Bionomia",
"default_icon" : "images/icon-16.png"
},
"permissions": [
"webNavigation",
"*://*.gbif.org/occurrence/*",
"*://*.gbif.org/*/occurrence/*",
"*://*.gbif.org/dataset/*",
"*://*.gbif.org/*/dataset/*"
],
"content_security_policy" : "script-src 'self'; object-src 'self'",
"content_scripts": [
{
"matches": [
"*://*.gbif.org/occurrence/*",
"*://*.gbif.org/*/occurrence/*",
"*://*.gbif.org/dataset/*",
"*://*.gbif.org/*/dataset/*"
],
"run_at": "document_idle",
"js": ["js/jquery-3.5.0.min.js", "js/content.js"],
"css": ["css/style.css"]
}
],
"background" : {
"page" : "background.html"
},
"web_accessible_resources" : [
"images/icon-128.png",
"images/icon-48.png",
"images/icon-16.png",
"images/orcid_24x24.png",
"images/orcid_16x16.gif",
"images/wikidata_16x16.png",
"images/ajax-loader.gif",
"js/jquery-3.3.1.min.js",
"js/content.js",
"css/style.css"
]
}