-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifestChrome.json
49 lines (43 loc) · 1.23 KB
/
manifestChrome.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
{
"manifest_version": 3,
"name": "WebInfoKeeper",
"description": "Allows you store specific values in browser with minimal friction",
"version": "1.2.0.1",
"permissions": ["storage", "clipboardRead", "clipboardWrite", "contextMenus"],
"action": {
"default_icon": "icons/icon64.png",
"default_title": "BrowserScratchpad",
"default_popup": "popup/popup.html"
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"96": "icons/icon96.png",
"128": "icons/icon128.png"
},
"commands": {
"store-content": {
"suggested_key": {
"default": "Alt+C"
},
"description": "Copies value into storage"
},
"get-content": {
"suggested_key": {
"default": "Alt+G"
},
"description": "Add value from storage to clipboard"
},
"show-popup": {
"suggested_key": {
"default": "Alt+O"
},
"description": "Opens popup window"
}
},
"background": {
"service_worker": "background.js"
}
}