-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 795 Bytes
/
manifest.json
File metadata and controls
33 lines (33 loc) · 795 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
{
"manifest_version":3,
"name":"WAPI",
"author": {
"name": "logo94",
"url": "https://github.com/logo94",
"email": "lorenzo.gobbo@usi.ch"
},
"version":"3.0.0",
"description": "Wikidata Item ID finder",
"action": {
"default_popup": "popup/popup.html",
"default_icon": "img/Wikidata-logo.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://logo94.github.io/*",
"https://labaib.github.io/*"
],
"js": ["content.js"],
"run_at": "document_start"
}
],
"host_permissions": [
"https://www.wikidata.org/*",
"http://viaf.org/*",
"https://opac.sbn.it/*"
]
}