Tab grouper

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

Wat is Tab grouper?

Tab grouper is een Chrome-extensie ontwikkeld door Explosion-Scratch, en de belangrijkste functie is "A tab grouping extension by Explosion-Scratch. This extension is open source here:…".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Tab grouper

Download Tab grouper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Tab grouper Tab grouper
ID ebaakekgcpaojdlfcfmlaelgaacmdeje
Officiële URL https://chromewebstore.google.com/detail/tab-grouper/ebaakekgcpaojdlfcfmlaelgaacmdeje
Beschrijving A tab grouping extension by Explosion-Scratch. This extension is open source here:…
Bestandsgrootte 31.63 KB
Aantal Installaties 93
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-12-05
Publicatiedatum 2021-12-03
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Explosion-Scratch
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        }
    }
}