Tab and Tab Group Shortcuts

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

Qu'est-ce que Tab and Tab Group Shortcuts ?

Tab and Tab Group Shortcuts est une extension Chrome développée par bmalehorn, et sa fonction principale est "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Tab and Tab Group Shortcuts

Téléchargez les fichiers d'extension Tab and Tab Group Shortcuts 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

                        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.                    

Informations de Base sur l'Extension

Nom Tab and Tab Group Shortcuts Tab and Tab Group Shortcuts
ID nnbnphmhdbcgnekonlgniafbpcpapkep
URL Officiel https://chromewebstore.google.com/detail/tab-and-tab-group-shortcu/nnbnphmhdbcgnekonlgniafbpcpapkep
Description Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.
Taille du Fichier 6.83 KB
Nombre d'Installations 216
Version Actuelle 1.0.6
Dernière Mise à Jour 2023-10-08
Date de Publication 2022-07-19
Évaluation 5.00/5 Total 4 Évaluations
Développeur bmalehorn
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/bmalehorn/new-tab-in-tab-group
Langues Prises en Charge 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"
    }
}