Tab Keys

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

What is Tab Keys?

Tab Keys is a Chrome extension developed by thekiteeatingtree, and its main feature is "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.".

Download Tab Keys Extension CRX File

Download Tab Keys extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Tab Keys Tab Keys
ID fmmkbjckdjobofhoikpldcahemfccffo
Official URL https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo
Description Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
File Size 4.5 KB
Installation Count 21
Current Version 1.0
Last Updated 2017-07-27
Publish Date 2017-07-27
Developer thekiteeatingtree
Payment Type free
Extension Website https://github.com/TheKiteEatingTree/TabKeys
Help Page URL https://github.com/TheKiteEatingTree/TabKeys/issues
Supported Languages 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"
        }
    }
}