New Tab in Group

Opens a new tab in the current group via keyboard shortcut

Cos'è New Tab in Group?

New Tab in Group è un'estensione di Chrome sviluppata da Toby Wolff-Maritz, e la sua funzione principale è "Opens a new tab in the current group via keyboard shortcut".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione New Tab in Group

Scarica i file di estensione New Tab in Group in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        A simple extension that opens a new tab in the current tab group using a shortcut.

Windows: Ctrl+Shift+Y
Mac: Command+Shift+Y
Chrome OS: Ctrl+Shift+U
Linux: Ctrl+Shift+J                    

Informazioni di Base sull'Estensione

Nome New Tab in Group New Tab in Group
ID cgcjmikekhoocfjbihnklkpfapmgjboi
URL Ufficiale https://chromewebstore.google.com/detail/new-tab-in-group/cgcjmikekhoocfjbihnklkpfapmgjboi
Descrizione Opens a new tab in the current group via keyboard shortcut
Dimensione del File 9.3 KB
Conteggio Installazioni 63
Versione Corrente 0.0.1
Ultimo Aggiornamento 2022-07-25
Data di Pubblicazione 2022-07-23
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Toby Wolff-Maritz
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/tmaritz/chrome-extension-new-tab-in-group
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab in Group",
    "version": "0.0.1",
    "description": "Opens a new tab in the current group via keyboard shortcut",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+J"
            }
        }
    },
    "icons": {
        "16": "assets\/layer-plus16.png",
        "32": "assets\/layer-plus32.png",
        "64": "assets\/layer-plus64.png",
        "128": "assets\/layer-plus128.png"
    }
}