-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
61 lines (52 loc) · 1.46 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
60
61
{
"manifest_version": 3,
"name": "WebInfoKeeper",
"description": "Allows you store specific values in browser with minimal friction",
"version": "1.2.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"
},
"browser_specific_settings": {
"gecko": {
"id": "{74489efd-12e1-4264-b026-470339d5bf5f}",
"strict_min_version": "109.0"
}
},
"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": {
"scripts": ["background.js"]
},
"options_ui": {
"page": "options/options.html"
}
}