-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
manifest.json
61 lines (61 loc) · 1.25 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
57
58
59
60
61
{
"name": "strava-map-switcher",
"version": "0.19.1",
"manifest_version": 3,
"description": "Map switcher for Strava website",
"homepage_url": "https://github.com/liskin/strava-map-switcher",
"icons": {
"128": "icons/icon128.png"
},
"permissions": [
"declarativeNetRequestWithHostAccess"
],
"host_permissions": [
"https://www.strava.com/*",
"https://mapserver.mapy.cz/*"
],
"content_scripts": [
{
"matches": [
"https://www.strava.com/*"
],
"js": [
"inject.js"
]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "mapy_cz",
"enabled": true,
"path": "rules_mapy_cz.json"
}
]
},
"web_accessible_resources": [
{
"resources": [
"3rd/Leaflet.GoogleMutant.js",
"3rd/jquery-3.5.1.min.js",
"3rd/leaflet-pegman.min.css",
"3rd/leaflet-pegman.min.js",
"arrive.min.js",
"common.js",
"donation.js",
"fix-mapbox.js",
"fix.js",
"layers.js",
"load.js"
],
"matches": [
"https://www.strava.com/*"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{8bc8a884-a7db-45e3-84dd-963933a87d3c}"
}
}
}