-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
44 lines (44 loc) · 980 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
40
41
42
43
44
{
"manifest_version": 2,
"name": "Chrommander - tab navigator",
"short_name": "Chrommander",
"version": "0.0.2",
"description": "Use Chrommander's search box to quickly jump to any opened tab or bookmark.",
"author": "@simon0191",
"browser_action": {
"default_popup": "dist/popup/index.html"
},
"background": {
"scripts": ["dist/background/bundle.js"]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["dist/foreground/bundle.js"]
}
],
"permissions": [
"activeTab",
"tabs",
"bookmarks",
"chrome://favicon/"
],
"commands": {
"_execute_browser_action": {
"description": "Open Chrommander",
"suggested_key": {
"windows": "Ctrl+Shift+P",
"mac": "MacCtrl+P",
"chromeos": "Ctrl+Shift+P",
"linux": "Ctrl+Shift+P"
}
}
},
"icons": {
"16": "dist/icon16.png",
"48": "dist/icon48.png",
"128": "dist/icon128.png"
}
}