Boost your productivity by quickly navigating through your open tabs, history and Tefter.io bookmarks.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Omni - tabs, history and bookmarks by Tefter",
"version": "1.16.0",
"description": "Boost your productivity by quickly navigating through your open tabs, history and Tefter.io bookmarks.",
"manifest_version": 2,
"short_name": "tefter",
"background": {
"page": "background/background.html",
"persistent": true
},
"omnibox": {
"keyword": "t"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"content/tefter_container.css"
],
"js": [
"vendor/mousetrap.js",
"content/content_script.js",
"content/container.js",
"content/onboarding.js",
"content/menu.js",
"content/omni.js"
],
"run_at": "document_start"
}
],
"browser_action": {
"default_icon": {
"16": "images/tefter_16.png",
"32": "images/tefter_32.png",
"48": "images/tefter_48.png",
"128": "images/tefter_128.png"
}
},
"icons": {
"16": "images/tefter_16.png",
"32": "images/tefter_32.png",
"48": "images/tefter_48.png",
"128": "images/tefter_128.png"
},
"permissions": [
"activeTab",
"contextMenus",
"tabs",
"webRequest",
"webRequestBlocking",
"*://*/*",
"*://go/*",
"history",
"alarms",
"storage",
"bookmarks"
],
"commands": {
"omni-open": {
"suggested_key": {
"default": "Alt+K",
"mac": "Alt+K"
},
"description": "Display omnisearch"
},
"show-aliases": {
"suggested_key": {
"default": "Alt+A",
"mac": "Alt+A"
},
"description": "Show aliases"
},
"show-tabs": {
"suggested_key": {
"default": "Alt+T",
"mac": "Alt+T"
},
"description": "Show open tabs"
},
"add-bookmark": {
"suggested_key": {
"default": "Alt+B",
"mac": "Alt+B"
},
"description": "Bookmark current page"
}
},
"web_accessible_resources": [
"content/omni.html",
"content/menu.html",
"content/onboarding.html",
"content/options.html",
"content/omni_frame.js",
"content/menu_frame.js",
"content/onboarding_frame.js",
"content/tefter_command.js",
"content/options.js",
"content/omni.css",
"content/menu.css",
"content/onboarding.css",
"content/options.css",
"content/onboarding_tab.html",
"vendor/simple.css",
"icons/loader.gif",
"icons/tefter_128.png",
"icons/logo.svg",
"icons/magnifier.svg",
"icons/pencil.svg",
"icons/person.svg",
"icons/cog.svg",
"icons/close.svg",
"icons/unlock_power.svg",
"icons/bookmark.svg",
"icons/zap.svg",
"icons/basic_usage.svg",
"icons/getting_started.svg",
"icons/tab.svg",
"icons/external_link.svg",
"icons/collaboration.svg",
"icons/omni_demo.webp",
"icons/onboarding_omni_demo.webp",
"icons/slack.svg",
"icons/slack_add_bookmark.webp",
"icons/slack_create_alias.webp",
"icons/slack_search.webp",
"icons/thank_you.svg"
],
"options_ui": {
"page": "content/options.html",
"open_in_tab": true
},
"incognito": "not_allowed",
"browser_specific_settings": {
"gecko": {
"id": "{8010c361-ca87-4ed1-b5b7-f1297a54c5f8}"
}
}
}