-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
39 lines (36 loc) · 927 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
{
"name": "Hover",
"description": "A floating notepad with superpowers.",
"version": "1.01",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "Hover"
},
"permissions": [
"activeTab"
],
"web_accessible_resources": ["app-frame.html","app-frame-style.css","/apps/*","interact.min.js","mark.min.js"],
"commands": {
"get-selected-text": {
"suggested_key": {
"windows": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y",
"chromeos": "Ctrl+Shift+U",
"linux": "Ctrl+Shift+J"
},
"description": "Get the selected text from the active tab."
}
},
"icons": {
"16": "/images/[email protected]",
"32": "/images/[email protected]",
"48": "/images/[email protected]",
"128": "/images/[email protected]"
}
}