Tab Keys

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

Qu'est-ce que Tab Keys ?

Tab Keys est une extension Chrome développée par thekiteeatingtree, et sa fonction principale est "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.".

Télécharger le fichier CRX de l'extension Tab Keys

Téléchargez les fichiers d'extension Tab Keys au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Tab Keys Tab Keys
ID fmmkbjckdjobofhoikpldcahemfccffo
URL Officiel 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.
Taille du Fichier 4.5 KB
Nombre d'Installations 21
Version Actuelle 1.0
Dernière Mise à Jour 2017-07-27
Date de Publication 2017-07-27
Développeur thekiteeatingtree
Type de Paiement free
Site Web de l'Extension https://github.com/TheKiteEatingTree/TabKeys
URL de la Page d'Aide https://github.com/TheKiteEatingTree/TabKeys/issues
Langues Prises en Charge 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"
        }
    }
}