Tab Hot Key

Define hotkeys to open or focus frequently used tabs.

Τι είναι το Tab Hot Key;

Το Tab Hot Key είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://solvenium.com, και η κύρια λειτουργία του είναι "Define hotkeys to open or focus frequently used tabs.".

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

screenshot
screenshot
screenshot

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

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

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

                        Jump to frequently used websites using keyboard shortcuts.

Press Alt + J, and then a defined hot key to open a website.

If a website is already opened then Tab Hot Key activates the existing tab. Otherwise it open the website in a new tab.

Unlike other shortcut extensions, Tab Hot Key doesn't inject any scripts in your websites. Instead, our extension opens up a small independent popup just for the moment to capture your shortcut key.

It can work globally! You don't have to be in Chrome to use your shortcuts. Just change the base hot key scope from "In Chrome" to Global in chrome://extensions/shortcuts.

Unlike other shortcut extensions that work globally, this one doesn't require any additional software.                    

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

Όνομα Tab Hot Key Tab Hot Key
ID amdglafidmblcmffjcbgkmbogkenfdjh
Επίσημο URL https://chromewebstore.google.com/detail/tab-hot-key/amdglafidmblcmffjcbgkmbogkenfdjh
Περιγραφή Define hotkeys to open or focus frequently used tabs.
Μέγεθος Αρχείου 13.61 KB
Αριθμός Εγκαταστάσεων 25
Τρέχουσα Έκδοση 0.1.0
Τελευταία Ενημέρωση 2022-04-11
Ημερομηνία Δημοσίευσης 2022-04-09
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://solvenium.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tab Hot Key",
    "version": "0.1.0",
    "description": "Define hotkeys to open or focus frequently used tabs.",
    "icons": {
        "128": "icon128.png"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "jump": {
            "suggested_key": {
                "default": "Alt+J"
            },
            "description": "Jump To Tab"
        }
    }
}