-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (48 loc) · 1.3 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
{
"name": "__MSG_app_name__",
"version": "1.1.1",
"manifest_version": 3,
"description": "__MSG_app_desc__",
"default_locale": "ja",
"homepage_url": "https://github.com/hidao80/fast-logbook/",
"icons": {
"256": "img/icon_256.png"
},
"action": {
"default_title": "__MSG_app_name__",
"default_icon": "img/icon_256.png",
"default_popup": "html/popup.html"
},
"options_page": "html/options.html",
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Shift+Alt+0",
"mac": "Shift+MacCtrl+0"
},
"description": "__MSG_punch_description__"
},
"log_download": {
"suggested_key": {
"default": "Shift+Alt+D",
"mac": "Shift+MacCtrl+D"
},
"description": "__MSG_download_description__"
},
"open_options": {
"suggested_key": {
"default": "Shift+Alt+O",
"mac": "Shift+MacCtrl+O"
},
"description": "__MSG_options_description__"
}
},
"permissions": [
"storage",
"downloads"
]
}