Tab Ahead

Tab Ahead lets you type ahead to quickly find open tabs by title and URL.

Τι είναι το Tab Ahead;

Το Tab Ahead είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jan Raasch, και η κύρια λειτουργία του είναι "Tab Ahead lets you type ahead to quickly find open tabs by title and URL.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Tab Ahead

Λήψη αρχείων επέκτασης Tab Ahead σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension helps you to quickly navigate through (the mess of) your currently open tabs by typing parts of their respective page titles or URLs using a fuzzy search (approximate string matching) algorithm.

Aspiring to bring Sublime Text's »Goto Anything...« to your Chrome Tabs.

Keyboard Shortcut:
Alt+T

Options:
You can choose to search through the current window or through all windows. The default setting is searching through the current window.

Privacy:
We do not find you to be all that interesting. Your questionable browsing history should remain between you and the NSA. Tab Ahead functions without any outbound communication. Period.

Keyboard/Hacker-friendly: 
You can leave your mice at home.

Lightweight:
No background processes.

Sponsor/Support:
Support the development of this extension via PayPal https://www.paypal.com/paypalme/janraasch/14,00 or GitHub Sponsors https://github.com/sponsors/janraasch.

Discovered a bug?
Create an issue on GitHub.
https://github.com/janraasch/tab-ahead/issues

Version History:
v1.5.0 - Improve fuzzy search.
v1.4.0 - Add dark color scheme for users of dark mode.
v1.3.1 - Maintenance release & initial release for Firefox.
v1.3.0 - Improve fuzzy filter and disable autocomplete on search input.
v1.2.2 - Equal margins for search input field.
v1.2.1 - Even faster popup response times.
v1.2.0 - Speed up drop-down response time.
v1.1.0 - Add option to search through all windows.
v1.0.9 - Match icon colors with popup.
v1.0.8 - New popup-icon. Fix windows focus and closing bugs.
v1.0.7 - Fix bug where popup was not closed after selection.
v1.0.6 - Improve build.
v1.0.5 - Release some more.
v1.0.4 - Release often.
v1.0.3 - Improve UI.
v1.0.2 - Relase early.
v1.0.1 - Add default shortcut & fuzzy search.
v1.0.0 - Initial release.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Tab Ahead Tab Ahead
ID naoajjeoiblmpegfelhkapanmmaaghmi
Επίσημο URL https://chromewebstore.google.com/detail/tab-ahead/naoajjeoiblmpegfelhkapanmmaaghmi
Περιγραφή Tab Ahead lets you type ahead to quickly find open tabs by title and URL.
Μέγεθος Αρχείου 55.96 KB
Αριθμός Εγκαταστάσεων 2,425
Τρέχουσα Έκδοση 1.5.0
Τελευταία Ενημέρωση 2020-10-13
Ημερομηνία Δημοσίευσης 2016-04-26
Αξιολόγηση 4.77/5 Συνολικά 70 Αξιολογήσεις
Προγραμματιστής Jan Raasch
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/janraasch/tab-ahead/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Ahead",
    "short_name": "Tab Ahead",
    "description": "Tab Ahead lets you type ahead to quickly find open tabs by title and URL.",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "theme_icons": [
            {
                "dark": "images\/icon-19.png",
                "light": "images\/icon-dark-19.png",
                "size": 19
            },
            {
                "dark": "images\/icon-38.png",
                "light": "images\/icon-dark-38.png",
                "size": 38
            }
        ],
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Tab Ahead",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "bg.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "tabs"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+T",
                "mac": "Alt+T",
                "chromeos": "Alt+T",
                "linux": "Alt+T"
            }
        }
    },
    "version": "1.5.0"
}