Tab and Tab Group Shortcuts

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

¿Qué es Tab and Tab Group Shortcuts?

Tab and Tab Group Shortcuts es una extensión de Chrome desarrollada por bmalehorn, y su función principal es "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Tab and Tab Group Shortcuts

Descarga archivos de extensión Tab and Tab Group Shortcuts en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Tab and Tab Group Shortcuts Tab and Tab Group Shortcuts
ID nnbnphmhdbcgnekonlgniafbpcpapkep
URL Oficial https://chromewebstore.google.com/detail/tab-and-tab-group-shortcu/nnbnphmhdbcgnekonlgniafbpcpapkep
Descripción Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.
Tamaño del Archivo 6.83 KB
Cantidad de Instalaciones 216
Versión Actual 1.0.6
Última Actualización 2023-10-08
Fecha de Publicación 2022-07-19
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador bmalehorn
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/bmalehorn/new-tab-in-tab-group
Idiomas Soportados 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"
    }
}