forked from Strajk/strava-enhancement-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
42 lines (40 loc) · 904 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
34
35
36
37
38
39
40
41
42
{
"manifest_version": 2,
"name": "Strava Enhancement Suite",
"description": "Handy tools and improvements to Strava.com",
"version": "2.7.0",
"background": {
"scripts": ["js/background.js"]
},
"content_scripts": [
{
"js": ["js/content_script.js"],
"run_at": "document_end",
"matches": [
"http://*.strava.com/*",
"https://*.strava.com/*"
]
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"options_page": "pages/options.html",
"page_action": {
"default_icon": "icons/icon48.png",
"default_title": "Strava Enhancement Suite",
"default_popup": "pages/popup.html"
},
"permissions": [
"http://*.strava.com/*",
"https://*.strava.com/*",
"storage",
"tabs"
],
"web_accessible_resources": [
"js/main.js",
"pages/options.js"
]
}