-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
50 lines (50 loc) · 1 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
{
"name": "Kommander",
"version": "0.0.2",
"manifest_version": 2,
"description": "CMD+K for your browser! Take control of your browser!",
"homepage_url": "https://github.com/marginless/kommander",
"icons": {
"16": "icons/1-1x16.png",
"32": "icons/1-1x32.png",
"48": "icons/1-1x48.png",
"64": "icons/1-1x64.png",
"96": "icons/1-1x96.png",
"128": "icons/1-1x128.png"
},
"background": {
"scripts": ["js/background.js"]
},
"permissions": [
"https://*/*",
"http://*/*"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"css": [
"css/style.css"
],
"js": [
"lib/jquery-3.2.1.slim.min.js",
"js/kommander.js"
]
}
],
"commands": {
"kommander-launch": {
"suggested_key": {
"default": "Ctrl+K",
"mac": "Command+K"
},
"description": "Launch kommander"
}
},
"web_accessible_resources": [
"icons/*.png",
"img/*.png"
]
}