Keyboard Shortcuts to Reorder Tabs

Chrome extension adding shortcuts for moving tabs around

Was ist Keyboard Shortcuts to Reorder Tabs?

Keyboard Shortcuts to Reorder Tabs ist eine Chrome-Erweiterung, die von Michael Fester entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension adding shortcuts for moving tabs around".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Keyboard Shortcuts to Reorder Tabs-Erweiterungs-CRX-Datei herunterladen

Laden Sie Keyboard Shortcuts to Reorder Tabs-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

                        The extension consists of four keyboard shortcuts (VIM style):

* Alt-Shift-L: Move Tab Right
* Alt-Shift-H: Move Tab Left
* Alt-Shift-K: Move Tab to Start Position
* Alt-Shift-J: Move Tab to End Position

A separate extension, tabasco, adds the following shortcuts to Chrome

* Close Other Tabs
* Close Tabs to the Right
* Pin Tab

Chrome extensions currently only allow for a maximum of four shortcuts, which is why they are not included in tabloid.

You can fetch tabasco here: https://chrome.google.com/webstore/detail/tabasco/dkoadhojigekhckndaehenfbhcgfeepl                    

Grundlegende Informationen zur Erweiterung

Name Keyboard Shortcuts to Reorder Tabs Keyboard Shortcuts to Reorder Tabs
ID femidpfpildjfepkcaodpalpakgadjih
Offizielle URL https://chromewebstore.google.com/detail/keyboard-shortcuts-to-reo/femidpfpildjfepkcaodpalpakgadjih
Beschreibung Chrome extension adding shortcuts for moving tabs around
Dateigröße 3.75 KB
Installationsanzahl 355
Aktuelle Version 1.0.0
Letztes Update 2023-10-27
Veröffentlichungsdatum 2013-01-23
Bewertung 4.25/5 Insgesamt 16 Bewertungen
Entwickler Michael Fester
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://michaelfester.com
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyboard Shortcuts to Reorder Tabs",
    "version": "1.0.0",
    "manifest_version": 3,
    "description": "Chrome extension adding shortcuts for moving tabs around",
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "move-tab-right": {
            "suggested_key": {
                "default": "Alt+Shift+L"
            },
            "description": "Move Tab to the right"
        },
        "move-tab-left": {
            "suggested_key": {
                "default": "Alt+Shift+H"
            },
            "description": "Move Tab to the left"
        },
        "move-tab-first": {
            "suggested_key": {
                "default": "Alt+Shift+K"
            },
            "description": "Move Tab to first position"
        },
        "move-tab-last": {
            "suggested_key": {
                "default": "Alt+Shift+J"
            },
            "description": "Move Tab to last position"
        }
    }
}