-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmanifest.json
More file actions
63 lines (63 loc) · 1.65 KB
/
manifest.json
File metadata and controls
63 lines (63 loc) · 1.65 KB
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
{
"manifest_version": 2,
"name": "Productivity Owl",
"version": "2.0.3",
"description": "Want to be productive? Let the Productivity Owl guide you to accomplishment.",
"icons": { "16": "img/owl_16x16.png",
"48": "img/owl_48x48.png",
"128": "img/owl_128x128.png"
},
"browser_action": {
"default_icon": "img/advice_owl_small.png",
"default_popup": "popup.html",
"default_title": "Productivity Owl"
},
"background": {
"scripts": ["jslib/jquery-3.3.1.min.js", "jslib/date.js", "jslib/time.js", "js/options/respect.js", "productivityowl.js"]
},
"options_page": "options.html",
"permissions": [
"http://fonts.googleapis.com/",
"https://fonts.googleapis.com/",
"tabs",
"history",
"unlimitedStorage",
"alarms"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": ["<all_urls>"],
"css": [
"css/block_styles.css",
"jslib/jquery.qtip.css",
"css/interventions.css",
"css/micromodal.css",
"css/tasks.css"
],
"js": [
"jslib/jquery-3.3.1.min.js",
"jslib/uri.all.min.js",
"jslib/jquery.qtip.js",
"jslib/micromodal.min.js",
"jslib/plain-draggable.js",
"jslib/editable.table.js",
"js/options/owl_sayings.js",
"js/options/task_list.js",
"js/options/interventions.js",
"js/block_logic.js",
"js/mustache.js",
"contentscript_owl.js"
]
}
],
"web_accessible_resources": [
"templates/*",
"sound/*",
"css/*",
"js/*",
"jslib/*",
"site/*",
"img/*"
]
}