-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
manifest_base.json
102 lines (95 loc) · 2.54 KB
/
manifest_base.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"manifest_version": 3,
"default_locale": "en",
"name": "Sauce for Strava™",
"short_name": "Sauce",
"description": "__MSG_app_desc__",
"homepage_url": "https://www.sauce.llc",
"author": "Sauce, LLC",
"version": "8.7.5",
"permissions": [
"storage",
"unlimitedStorage",
"contextMenus",
"alarms"
],
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"64": "images/icon64.png",
"128": "images/icon128.png",
"256": "images/icon256.png"
},
"action": {
"default_icon": {
"19": "images/icon19.png",
"38": "images/icon38.png",
"48": "images/icon48.png",
"64": "images/icon64.png",
"128": "images/icon128.png",
"256": "images/icon256.png"
},
"default_title": "Sauce for Strava™",
"default_popup": "pages/options.html?popup"
},
"options_ui": {
"page": "pages/options.html",
"open_in_tab": true
},
"content_scripts": [{
"run_at": "document_start",
"matches": ["https://www.strava.com/*"],
"js": [
"src/ext/webext.js",
"src/common/base.js",
"src/common/base_init.js",
"src/common/proxy.js",
"src/ext/proxy.js",
"src/common/storage.js",
"src/ext/storage.js",
"src/ext/locale.js",
"src/ext/boot.js"
]
}, {
"run_at": "document_start",
"matches": ["https://www.strava.com/*"],
"world": "MAIN",
"js": [
"src/common//base.js",
"src/site/preloader.js",
"src/site/base_init.js"
]
}, {
"run_at": "document_start",
"matches": ["https://www.strava.com/activities/*"],
"world": "MAIN",
"js": [
"src/site/export_activity_photos.js"
]
}, {
"run_at": "document_start",
"matches": ["https://www.strava.com/*"],
"css": [
"css/site/common.css"
]
}, {
"run_at": "document_start",
"matches": ["https://www.strava.com/sauce/*"],
"css": [
"css/site/repurpose.css"
]
}],
"web_accessible_resources": [{
"resources": [
"build.json",
"src/*",
"lib/*",
"css/*",
"templates/*",
"images/*",
"pages/*"
],
"matches": ["*://*/*"]
}]
}