-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
33 lines (32 loc) · 889 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
{
"manifest_version": 3,
"name": "DartConnect Stats Helper",
"version": "1.1.0",
"description": "Automatically displays highest and lowest player averages on DartConnect.",
"icons": {
"16": "dist/icon-16x16.png",
"48": "dist/icon-48x48.png",
"128": "dist/icon-128x128.png",
"256": "dist/icon-256x256.png"
},
"action": {
"default_icon": "dist/icon.png",
"default_popup": "dist/popup.html"
},
"permissions": [
"activeTab"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"host_permissions": ["https://tv.dartconnect.com/event*"],
"content_scripts": [
{
"matches": ["https://tv.dartconnect.com/event*"],
"css": ["dist/tailwind.css"],
"js": ["src/jquery-3.7.1.min.js", "dist/script.js"]
}
]
}