Tab grouper

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

Qu'est-ce que Tab grouper ?

Tab grouper est une extension Chrome développée par Explosion-Scratch, et sa fonction principale est "A tab grouping extension by Explosion-Scratch. This extension is open source here:…".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Tab grouper

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

                        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!                    

Informations de Base sur l'Extension

Nom Tab grouper Tab grouper
ID ebaakekgcpaojdlfcfmlaelgaacmdeje
URL Officiel https://chromewebstore.google.com/detail/tab-grouper/ebaakekgcpaojdlfcfmlaelgaacmdeje
Description A tab grouping extension by Explosion-Scratch. This extension is open source here:…
Taille du Fichier 31.63 KB
Nombre d'Installations 93
Version Actuelle 1.0.0
Dernière Mise à Jour 2021-12-05
Date de Publication 2021-12-03
Évaluation 5.00/5 Total 2 Évaluations
Développeur Explosion-Scratch
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    }
}