Tab Keys

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

Co je Tab Keys?

Tab Keys je rozšíření Chrome vyvinuté thekiteeatingtree, a jeho hlavní funkcí je „Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.“.

Stáhnout soubor CRX rozšíření Tab Keys

Stáhněte si soubory rozšíření Tab Keys ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Tab Keys Tab Keys
ID fmmkbjckdjobofhoikpldcahemfccffo
Oficiální URL https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo
Popis Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
Velikost souboru 4.5 KB
Počet instalací 21
Aktuální Verze 1.0
Poslední Aktualizace 2017-07-27
Datum Vydání 2017-07-27
Vývojář thekiteeatingtree
Typ Platby free
Webové stránky Rozšíření https://github.com/TheKiteEatingTree/TabKeys
URL Stránky Nápovědy https://github.com/TheKiteEatingTree/TabKeys/issues
Podporované Jazyky 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"
        }
    }
}