-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (37 loc) · 955 Bytes
/
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
{
"name": "EASIER Extension",
"version": "1.0.4",
"description": "Chrome extension to interact with Web3 Geo Dashboard",
"manifest_version": 3,
"author": "The EASIER Data Initiative",
"action":{
"default_popup": "index.html",
"default_title": "EASIER Extension"
},
"icons": {
"16": "logo16.png",
"48": "logo48.png",
"128": "logo128.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["contentScript.js"]
}
],
"permissions": [
"storage",
"activeTab",
"webRequest",
"storage",
"http://localhost/",
"http://127.0.0.1/"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": ["https://localhost/*", "http://127.0.0.1/"],
"externally_connectable": {
"matches": ["http://localhost/*", "http://127.0.0.1/*"]
}
}