forked from xordiv/open-last-tab-chrome
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
executable file
·45 lines (45 loc) · 998 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
43
44
45
{
"manifest_version": 3,
"default_locale": "en",
"name": "Open Last Tab",
"short_name": "OLT",
"description": "__MSG_description__",
"version": "1.2",
"permissions": [
"tabs",
"storage"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"commands": {
"alt_switch_fast": {
"suggested_key": {
"default": "Alt+Q",
"mac": "Alt+Q"
},
"description": "__MSG_alt_switch_fast_description__"
},
"alt_switch_slow_backward": {
"suggested_key": {
"default": "Alt+S",
"mac": "Alt+S"
},
"description": "__MSG_alt_switch_slow_backward_description__"
},
"alt_switch_slow_forward": {
"suggested_key": {
"default": "Alt+Shift+S",
"mac": "Alt+Shift+S"
},
"description": "__MSG_alt_switch_slow_forward_description__"
}
},
"action": {}
}