-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
44 lines (37 loc) · 1 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
{
"manifest_version": 2,
"name": "Time to run?",
"description": "This extension provides motivation and information to get you running based on realtime weather conditions.",
"version": "0.4.2",
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"32": "images/run_black_32.png"
},
"default_title": "Time to run?"
},
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com 'unsafe-eval'; object-src 'self'",
"permissions": [
"alarms",
"geolocation",
"storage",
"http://fonts.googleapis.com/",
"https://fonts.googleapis.com/"
],
"background": {
"scripts": [
"eventPage.js",
"static-js/jquery-3.1.1.min.js",
"static-js/jquery-ui.min.js",
"static-js/raphael-2.1.4.min.js",
"static-js/justgage.js",
"static-js/ml.min.js",
"static-js/jquery.csv.min.js"
]
}
}