-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
59 lines (59 loc) · 1.23 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "odinochka",
"version": "4.0.0",
"description": "Open source tab vault",
"permissions": [
"contextMenus",
"tabs",
"tabGroups",
"unlimitedStorage",
"storage",
"favicon"
],
"optional_permissions": [
"identity",
"alarms",
"clipboardWrite"
],
"optional_host_permissions": [
"https://api.github.com/"
],
"oauth2": {
"client_id": "396036734490-fv1kvvuk8npgtjlmgen926ahsvc18f72.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/drive.file"
]
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"commands": {
"odinochka_show": {
"suggested_key": {
"default": "Alt+Shift+O"
},
"description": "Show Odinochka"
},
"odinochka_save_tab": {
"suggested_key": {
"default": "Alt+T"
},
"description": "Save Tab"
},
"odinochka_save_win": {
"suggested_key": {
"default": "Alt+O"
},
"description": "Save Window"
}
},
"action": {},
"icons": {
"16": "images/odinochka16.png",
"32": "images/odinochka32.png",
"48": "images/odinochka48.png",
"128": "images/odinochka128.png"
},
"manifest_version": 3
}