forked from 7killer/ITYC-Dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
56 lines (54 loc) · 1.58 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
{
"name": "VR Dashboard I.T.Y.C.",
"short_name": "VR Dashboard I.T.Y.C.",
"description": "Monitor boat position & call virtual sailor weather router",
"version": "1.1.7",
"permissions": [
"tabs",
"storage",
"activeTab",
"scripting",
"declarativeContent",
"unlimitedStorage"
],
"host_permissions" : [
"*://*.virtualregatta.com/*",
"*://*.ityc.fr/*",
"*://*.openstreetmap.org/*",
"http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/",
"https://routage.vrzen.org/*",
"http://zezo.org/*",
"http://localhost:8081/nmea/*",
"http://localhost:8082/nmea/*",
"http://localhost:8083/nmea/*",
"http://localhost:8084/nmea/*"
],
"background": {
"service_worker": "./js/background.js"
},
"action": {
"default_icon": {"128": "icon_grey.png"},
"default_title": "I.T.Y.C. Dashboard"
},
"content_scripts": [
{
"matches": ["https://www.virtualregatta.com/*/offshore-*/*","https://www.virtualregatta.com/*/offshore-*-iframe/*"],
"js": ["./js/addResume2.js"],
"run_at": "document_start"
},
{
"matches": ["https://www.virtualregatta.com/*/offshore-*/*","https://www.virtualregatta.com/*/offshore-*-iframe/*"],
"run_at": "document_end",
"css":["./css/content.css"]
}
],
"manifest_version": 3,
"web_accessible_resources": [{
"resources": ["listener.js"],
"matches": ["<all_urls>"]
}],
"externally_connectable": {
"matches": ["https://www.virtualregatta.com/*/offshore-*/*","https://www.virtualregatta.com/*/offshore-*-iframe/*"
]
}
}