-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (44 loc) · 1.32 KB
/
manifest.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"manifest_version": 3,
"name": "Race Tracker",
"version": "1.1.6",
"description": "Visual tracker for Hyrox races",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_security_policy": {
"extension_pages": "default-src 'self'; img-src 'self' https://i.ytimg.com; frame-src 'self' https://www.youtube.com;"
},
"options_page": "welcome.html",
"content_scripts": [
{
"matches": ["https://results.hyrox.com/season-*/**"],
"include_globs": ["*content=detail*"],
"js": ["dist/bundle.js"],
"css": ["styles.css"]
}
],
"web_accessible_resources": [
{
"resources": ["maps/*.jpg", "maps/*.png"],
"matches": ["https://results.hyrox.com/*"]
}
],
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"permissions": ["storage", "activeTab", "notifications"],
"host_permissions": ["https://results.hyrox.com/*"]
}