Tab Keys

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

Was ist Tab Keys?

Tab Keys ist eine Chrome-Erweiterung, die von thekiteeatingtree entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.".

Tab Keys-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tab Keys-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Tab Keys Tab Keys
ID fmmkbjckdjobofhoikpldcahemfccffo
Offizielle URL https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo
Beschreibung Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
Dateigröße 4.5 KB
Installationsanzahl 21
Aktuelle Version 1.0
Letztes Update 2017-07-27
Veröffentlichungsdatum 2017-07-27
Entwickler thekiteeatingtree
Zahlungsart free
Erweiterungswebsite https://github.com/TheKiteEatingTree/TabKeys
Hilfeseite URL https://github.com/TheKiteEatingTree/TabKeys/issues
Unterstützte Sprachen 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"
        }
    }
}