Tab grouper

A tab grouping extension by Explosion-Scratch. This extension is open source here:…

Cos'è Tab grouper?

Tab grouper è un'estensione di Chrome sviluppata da Explosion-Scratch, e la sua funzione principale è "A tab grouping extension by Explosion-Scratch. This extension is open source here:…".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Tab grouper

Scarica i file di estensione Tab grouper 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 tab grouping extension by Explosion-Scratch. This extension is open source here: https://github.com/Explosion-Scratch/tab_grouping

This extension allows automatically grouping tabs, manually grouping tabs, ungrouping them, naming the groups automatically and so much more!                    

Informazioni di Base sull'Estensione

Nome Tab grouper Tab grouper
ID ebaakekgcpaojdlfcfmlaelgaacmdeje
URL Ufficiale https://chromewebstore.google.com/detail/tab-grouper/ebaakekgcpaojdlfcfmlaelgaacmdeje
Descrizione A tab grouping extension by Explosion-Scratch. This extension is open source here:…
Dimensione del File 31.63 KB
Conteggio Installazioni 93
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-12-05
Data di Pubblicazione 2021-12-03
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Explosion-Scratch
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab grouper",
    "version": "1.0.0",
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "permissions": [
        "tabs",
        "tabGroups",
        "storage"
    ],
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "settings.html",
        "open_in_tab": true
    },
    "commands": {
        "group": {
            "suggested_key": {
                "default": "Ctrl+G"
            },
            "description": "Group tabs in the current window by domain"
        },
        "collapse": {
            "suggested_key": {
                "default": "Ctrl+Shift+G"
            },
            "description": "Collapse non focused tab groups in the current window"
        },
        "ungroup": {
            "description": "Ungroup all tabs in the current window"
        }
    }
}