-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
51 lines (49 loc) · 1.04 KB
/
manifest.json
File metadata and controls
51 lines (49 loc) · 1.04 KB
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
{
"manifest_version": 3,
"name": "Live Track Pro",
"version": "1.0",
"description": "Sostituisce l'interfaccia di Garmin con una dashboard professionale",
"icons": {
"512": "src/icon.png"
},
"permissions": [
"storage"
],
"background": {
"service_worker": "src/background.js"
},
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": true
},
"action": {
"default_icon": {
"512": "src/icon.png"
}
},
"host_permissions": [
"https://livetrack.garmin.com/*",
"https://api.openweathermap.org/*",
"https://api.open-meteo.com/*"
],
"web_accessible_resources": [
{
"resources": [
"src/*",
"src/components/*",
"src/managers/*",
"src/ui/*",
"src/utils/*"
],
"matches": ["https://livetrack.garmin.com/*"]
}
],
"content_scripts": [
{
"matches": ["https://livetrack.garmin.com/session/*"],
"css": ["src/ui/dashboard.css"],
"js": ["src/content.js"],
"run_at": "document_start"
}
]
}