-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (31 loc) · 759 Bytes
/
manifest.json
File metadata and controls
31 lines (31 loc) · 759 Bytes
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
{
"name": "Kommand",
"version": "1.1",
"description": "Use the Cmd+K hotkey to quickly access search bars on popular websites.",
"manifest_version": 2,
"permissions": [
"tabs"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [ {
"matches": ["<all_urls>"],
"js": ["main.js"]
} ],
"commands": {
"kommand": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"mac": "Command+Shift+K"
},
"description": "Execute Kommand"
}
},
"icons": {
"32": "icons/icon32.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png"
}
}