-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmanifest.json
36 lines (34 loc) · 891 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
{
"manifest_version": 2,
"name": "vx",
"description": "This extension listens to you and copies what you said to the clipboard.",
"version": "0.5.2",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"commands": {
"listen1": {
"description": "Listen [first language]",
"suggested_key": {
"default": "Ctrl+Shift+0"
}
},
"listen2": {
"description": "Listen [second language]",
"suggested_key": {
"default": "Ctrl+Shift+9"
}
}
},
"background": {
"page": "background.html"
},
"permissions": ["clipboardWrite", "notifications", "storage", "activeTab"],
"browser_action": {
"default_icon": "icon.png"
},
"icons": { "128": "icon-128.png" },
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"web_accessible_resources": ["popup.html"]
}