Tab Keys

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

Co to jest Tab Keys?

Tab Keys to rozszerzenie Chrome opracowane przez thekiteeatingtree, a jego główną funkcją jest „Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.”.

Pobierz plik CRX rozszerzenia Tab Keys

Pobierz pliki rozszerzeń Tab Keys w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Tab Keys Tab Keys
ID fmmkbjckdjobofhoikpldcahemfccffo
Oficjalny URL https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo
Opis Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
Rozmiar pliku 4.5 KB
Liczba instalacji 21
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2017-07-27
Data Publikacji 2017-07-27
Deweloper thekiteeatingtree
Typ Płatności free
Strona Rozszerzenia https://github.com/TheKiteEatingTree/TabKeys
Adres URL Strony Pomocy https://github.com/TheKiteEatingTree/TabKeys/issues
Obsługiwane Języki 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"
        }
    }
}