Omni - tabs, history and bookmarks by Tefter

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

Was ist Omni - tabs, history and bookmarks by Tefter?

Omni - tabs, history and bookmarks by Tefter ist eine Chrome-Erweiterung, die von https://tefter.io entwickelt wurde, und ihr Hauptmerkmal ist "Boost your productivity by quickly navigating through your open tabs, history and Tefter.io bookmarks.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Omni - tabs, history and bookmarks by Tefter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Omni - tabs, history and bookmarks by Tefter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Omni - tabs, history and bookmarks by Tefter Omni - tabs, history and bookmarks by Tefter
ID eldofalegbgagpenjjcapjaogpioldoh
Offizielle URL https://chromewebstore.google.com/detail/omni-tabs-history-and-boo/eldofalegbgagpenjjcapjaogpioldoh
Beschreibung Boost your productivity by quickly navigating through your open tabs, history and Tefter.io bookmarks.
Dateigröße 2.29 MB
Installationsanzahl 350
Aktuelle Version 1.16.0
Letztes Update 2022-05-08
Veröffentlichungsdatum 2020-06-17
Bewertung 4.11/5 Insgesamt 9 Bewertungen
Entwickler https://tefter.io
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://tefter.io
Hilfeseite URL https://guides.tefter.io
URL der Datenschutzrichtlinien-Seite https://gist.github.com/zorbash/7f2b8e357cbd287bcf78724484f04114
Unterstützte Sprachen 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"
}