forked from alyssaxuu/omni
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
53 lines (53 loc) · 1.2 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
51
52
53
{
"name": "Omni - Bookmark, History, & Tab Manager",
"description": "Supercharge Chrome with commands, shortcuts, and more",
"offline_enabled": true,
"version": "1.4.7",
"manifest_version": 3,
"action": {
"icons": {
"16": "assets/logo-16.png",
"48": "assets/logo-48.png",
"128": "assets/logo-128.png"
}
},
"icons": {
"16": "assets/logo-16.png",
"48": "assets/logo-48.png",
"128": "assets/logo-128.png"
},
"commands": {
"open-omni": {
"suggested_key": {
"default": "Ctrl Shift K",
"mac": "Command Shift K"
},
"description": "Open command menu"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_end",
"js": ["focus.js", "jquery.js", "content.js", "virtualized-list.min.js"],
"css": ["content.css"]
}
],
"web_accessible_resources": [
{
"resources": ["content.html", "newtab.html", "assets/*", "popup.css", "popup.js"],
"matches": ["<all_urls>"]
}
],
"permissions": [
"tabs", "activeTab", "bookmarks", "browsingData", "history", "scripting", "search"
],
"host_permissions": [
"https://www.googleapis.com/*", "https://gstatic.com/*", "*://*/*"
]
}