mirror of
https://github.com/alyssaxuu/omni.git
synced 2026-03-11 08:54:35 +00:00
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"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/*", "*://*/*"
|
|
]
|
|
}
|