Tab Keys

Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.

Tab Keysとは何ですか?

Tab Keysはthekiteeatingtreeによって開発されたChromeの拡張機能で、その主な機能は「Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.」です。

Tab Keys拡張機能のCRXファイルをダウンロード

Tab Keys拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Allows you to set keyboard shortcuts for selecting the next or previous tab.  Also offers the ability to add a shortcut to pin tabs.  

The default shortcuts for next/prev tab are Ctrl+Right/Left.  To edit the shortcuts click on the extension icon and hit 'Manage extensions'.  Scroll to the bottom of the page and click 'Keyboard shortcuts'.  This extensions shortcuts will be editable under the 'Tab Keys' header.                    

拡張機能の基本情報

名前 Tab Keys Tab Keys
ID fmmkbjckdjobofhoikpldcahemfccffo
公式URL https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo
説明 Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
ファイルサイズ 4.5 KB
インストール数 21
現在のバージョン 1.0
最終更新日 2017-07-27
公開日 2017-07-27
開発者 thekiteeatingtree
支払い方法 free
拡張機能のウェブサイト https://github.com/TheKiteEatingTree/TabKeys
ヘルプページのURL https://github.com/TheKiteEatingTree/TabKeys/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Keys",
    "description": "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next\/prev tab.",
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "next-tab": {
            "suggested_key": {
                "default": "Ctrl+Right"
            },
            "description": "Select the next tab"
        },
        "prev-tab": {
            "suggested_key": {
                "default": "Ctrl+Left"
            },
            "description": "Select the previous tab"
        },
        "pin-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+P"
            },
            "description": "Pin the current tab"
        }
    }
}