Tab Hot Key

Define hotkeys to open or focus frequently used tabs.

什麼是Tab Hot Key?

Tab Hot Key是由https://solvenium.com開發的Chrome擴展程式,該擴展的主要功能是“Define hotkeys to open or focus frequently used tabs.”。

擴展截圖

screenshot
screenshot
screenshot

下載Tab Hot Key擴展crx文件

下載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
官方網址 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"
        }
    }
}