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
公式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
Eメール [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"
        }
    }
}