Tab Keys

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

Что такое Tab Keys?

Tab Keys - это расширение Chrome, разработанное thekiteeatingtree, и его основная функция - "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.".

Скачать файл CRX расширения Tab Keys

Скачайте файлы расширений 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"
        }
    }
}