-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.chrome.json
50 lines (45 loc) · 1.3 KB
/
manifest.chrome.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
{
"manifest_version": 3,
"name": "Strava Helper",
"description": "Some tweaks for Strava. Adds a \"Give Kudos to All\" button, removes clutter and provides UI tweaks.",
"version": "1.1.3",
"permissions": [
"storage"
],
"content_scripts": [{
"matches": [
"https://www.strava.com/*"
],
"css": [
"assets/css/strava-helper.css"
],
"js": [
"assets/js/jquery-3.6.0.min.js",
"assets/js/strava_helper.root.js",
"assets/js/strava_helper.util.js",
"assets/js/strava_helper.cleanup.js",
"assets/js/strava_helper.kudos_all.js",
"assets/js/strava_helper.navbar.js",
"assets/js/strava_helper.veloviewer.js"
]
}],
"web_accessible_resources": [{
"resources": [
"assets/img/kudos_all.png",
"assets/img/logo-strava-helper-labs.svg"
],
"matches": [
"https://www.strava.com/*"
]
}],
"icons": {
"16": "assets/img/logo16.png",
"32": "assets/img/logo32.png",
"48": "assets/img/logo48.png",
"64": "assets/img/logo64.png",
"128": "assets/img/logo128.png"
},
"options_ui": {
"page": "assets/html/options.html"
}
}