-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
48 lines (48 loc) · 1.2 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
{
"manifest_version": 2,
"name": "Chronos",
"version": "0.8.3",
"description": "Manage timesheets in Tryton",
"icons": {
"16": "icons/chronos-16.png",
"48": "icons/chronos-48.png",
"128": "icons/chronos-128.png"
},
"background": {
"scripts": [
"bower_components/jquery/dist/jquery.js",
"backend.js",
"background.js"
]
},
"browser_action": {
"browser_style": false,
"default_icon": {
"16": "icons/chronos-16.png",
"48": "icons/chronos-48.png",
"128": "icons/chronos-128.png"
},
"default_popup": "chronos.html",
"default_title": "Enter timesheet",
"theme_icons": [{
"light": "icons/chronos-light.svg",
"dark": "icons/chronos.svg",
"size": 16
}, {
"light": "icons/chronos-light.svg",
"dark": "icons/chronos.svg",
"size": 32
}]
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+I"
}
}
},
"permissions": [
"*://*/",
"alarms"
]
}