Tab Hot Key

Define hotkeys to open or focus frequently used tabs.

Apa itu Tab Hot Key?

Tab Hot Key adalah ekstensi Chrome yang dikembangkan oleh https://solvenium.com, dan fitur utamanya adalah "Define hotkeys to open or focus frequently used tabs.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Tab Hot Key

Unduh file ekstensi Tab Hot Key dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Tab Hot Key Tab Hot Key
ID amdglafidmblcmffjcbgkmbogkenfdjh
URL Resmi https://chromewebstore.google.com/detail/tab-hot-key/amdglafidmblcmffjcbgkmbogkenfdjh
Deskripsi Define hotkeys to open or focus frequently used tabs.
Ukuran File 13.61 KB
Jumlah Instalasi 25
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2022-04-11
Tanggal Publikasi 2022-04-09
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://solvenium.com
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    }
}