Tab and Tab Group Shortcuts

Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.

Was ist Tab and Tab Group Shortcuts?

Tab and Tab Group Shortcuts ist eine Chrome-Erweiterung, die von bmalehorn entwickelt wurde, und ihr Hauptmerkmal ist "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.".

Erweiterungsscreenshots

screenshot
screenshot

Tab and Tab Group Shortcuts-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tab and Tab Group Shortcuts-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

                        Adds multiple shortcuts to manage tabs:


Opens a tab in the same group as the current tab.
Mac: Command+Shift+Y
Windows: Ctrl+Shift+Y

Swap the tab to the left, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.

Swap the tab to the right, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.

Move focus to the left, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.

Move focus to the right, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.                    

Grundlegende Informationen zur Erweiterung

Name Tab and Tab Group Shortcuts Tab and Tab Group Shortcuts
ID nnbnphmhdbcgnekonlgniafbpcpapkep
Offizielle URL https://chromewebstore.google.com/detail/tab-and-tab-group-shortcu/nnbnphmhdbcgnekonlgniafbpcpapkep
Beschreibung Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.
Dateigröße 6.83 KB
Installationsanzahl 216
Aktuelle Version 1.0.6
Letztes Update 2023-10-08
Veröffentlichungsdatum 2022-07-19
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler bmalehorn
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/bmalehorn/new-tab-in-tab-group
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab and Tab Group Shortcuts",
    "description": "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.",
    "version": "1.0.6",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "tabGroups"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "swap-right": {
            "description": "Swap tab to the right"
        },
        "swap-left": {
            "description": "Swap tab to the left"
        },
        "focus-left-into-group": {
            "description": "Move focus left into tab group"
        },
        "focus-right-into-group": {
            "description": "Move focus right into tab group"
        },
        "new-tab-in-group": {
            "description": "Open New Tab in Group",
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            }
        }
    },
    "icons": {
        "128": "icon.png"
    }
}