Tab Group Helper

Allow quick grouping of tabs by their attributes like title or URL

Qu'est-ce que Tab Group Helper ?

Tab Group Helper est une extension Chrome développée par Mike DiDomizio, et sa fonction principale est "Allow quick grouping of tabs by their attributes like title or URL".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Tab Group Helper

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

                        The main audience being those that have a lot of browser tabs open like office workers or software developers, where tabs managing tabs might become unorganized.

You could group tabs by social media, work, JIRA, Git, etc.  However you like!

Other features
============
- Use regular expressions to be more creative/advanced with your grouping rules
- Automatically group tabs on creation and/or on when tabs change web page
- Import/export your settings to share with co-workers or friends
- Sort your groups with a click of a button
- Keyboard shortcuts to run without opening the extension

Note: Although upon install the extension will say that it is asking for browser history, it is part of the tabs permission as you can read here => https://www.quora.com/Why-do-so-many-Chrome-extensions-ask-for-access-to-my-browsing-history .  This extension does not read your browser history.                    

Informations de Base sur l'Extension

Nom Tab Group Helper Tab Group Helper
ID llhkcebnebfiaamifhbpehjompplpnae
URL Officiel https://chromewebstore.google.com/detail/tab-group-helper/llhkcebnebfiaamifhbpehjompplpnae
Description Allow quick grouping of tabs by their attributes like title or URL
Taille du Fichier 125 KB
Nombre d'Installations 102
Version Actuelle 1.9.1
Dernière Mise à Jour 2022-04-08
Date de Publication 2021-04-13
Développeur Mike DiDomizio
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/mikedidomizio/tab-group-helper
URL de la Page d'Aide https://github.com/mikedidomizio/tab-group-helper
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Allow quick grouping of tabs by their attributes like title or URL",
    "version": "1.9.1",
    "manifest_version": 3,
    "name": "Tab Group Helper",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "tabGroups"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png"
            ],
            "matches": []
        }
    ],
    "minimum_chrome_version": "89",
    "offline_enabled": true,
    "commands": {
        "run_grouping": {
            "suggested_key": {
                "default": "Ctrl+Shift+G",
                "mac": "Command+Shift+G"
            },
            "description": "Groups tabs by rules"
        }
    }
}