Omni - tabs, history and bookmarks by Tefter

Boost your productivity by quickly navigating through your open tabs, history and Tefter.io bookmarks.

什么是Omni - tabs, history and bookmarks by Tefter?

Omni - tabs, history and bookmarks by Tefter是由https://tefter.io开发的Chrome扩展程序,该扩展的主要功能是“Boost your productivity by quickly navigating through your open tabs, history and Tefter.io bookmarks.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Omni - tabs, history and bookmarks by Tefter扩展crx文件

下载Omni - tabs, history and bookmarks by Tefter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Omni will analyze and index your browsing history, tabs and Tefter.io bookmarks for an optimal web navigation personalized experience.

Changelog: https://headwayapp.co/tefter-changelog

All your data stays local and is never uploaded to any internet servers. You don't have to take our word for it, the source code is unobfuscated and available to be inspected.

We are committed to the privacy of our users. Omni and Tefter don't show any ads, they don't track you and don't display annoying notifications.

Omni is free, but perfectly paired with Tefter.io, the social bookmarking toolkit for teams. You can connect Omni to your Tefter account to sync your bookmarks to the cloud and access them from all your devices.

Omni is primarily intended to be used through a keyboard-driven user interface.

Open Omni:

Surface Omni by hitting alt+k. Now you can search your history, tabs and Tefter.io bookmarks. The search scope is configurable.

Groups:

All your links are automatically organized into groups based on some parameters of link like the domain name. For example corp1.slack.com and corp2.slack.com would belong to the same group named Slack. Only the top ten most frequently accessed groups appear.
You can switch between groups by pressing TAB.

Organizations:

Collaborate with others and build a common knowledge base of your most useful bookmarks and aliases. Access the organization's bookmarks from any page or even through our Slack integration. This feature requires a Tefter.io account.

Aliases:

You can create shortcuts to links you commonly use. We call such shortcuts aliases. To use aliases you need a Tefter account. To create an alias, read here. To search and navigate to aliases, either hit alt + a or type /go in the Omni search bar. You may also navigate to an alias, let's say docs by typing go/docs in your browser's address bar. This feature requires a Tefter.io account.

Bookmarks:
 
Omni will make your existing bookmarks searchable.
To add a bookmark through Omni, hit alt+b or press on the press the extension icon  followed by the "add bookmark" option.

Hotkeys:
In settings you can see and configure keyboard shortcuts for most common actions.

Shortcuts:
alt + b Bookmark current page
alt + k Show Omni search
alt + a Show aliases
arrow down Select the next link in results
ctrl + j Select the next link in results
arrow up Select the previous link in results
ctrl + k Select the previous link in results
tab Select the next group
shift + tab Select the previous group
ctrl + l Select the next organization
ctrl + h Select the previous organization
alt + number Select the organization by number, where number in [1, 5]
alt + 0 Deselect any organization

On MacOS, use option ⌥ instead of alt.

Commands:
/s  Lookup  via external search
/c  Create an alias
/go  List aliases and navigate to the selected one
/t  List open tabs and navigate to selected one                    

扩展基本信息

名称 Omni - tabs, history and bookmarks by Tefter Omni - tabs, history and bookmarks by Tefter
ID eldofalegbgagpenjjcapjaogpioldoh
官方URL https://chromewebstore.google.com/detail/omni-tabs-history-and-boo/eldofalegbgagpenjjcapjaogpioldoh
简介 Boost your productivity by quickly navigating through your open tabs, history and Tefter.io bookmarks.
文件大小 2.29 MB
安装次数 350
当前版本 1.16.0
更新时间 2022-05-08
上架时间 2020-06-17
评分 4.11/5 共9次评分
开发者 https://tefter.io
电子邮箱 [email protected]
付费类型 free
扩展官网 https://tefter.io
帮助页面URL https://guides.tefter.io
隐私政策页面URL https://gist.github.com/zorbash/7f2b8e357cbd287bcf78724484f04114
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "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": [
                ""
            ],
            "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"
}