Tab Group Helper

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

O que é Tab Group Helper?

Tab Group Helper é uma extensão do Chrome desenvolvida por Mike DiDomizio, e sua principal característica é "Allow quick grouping of tabs by their attributes like title or URL".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Tab Group Helper

Baixe arquivos de extensão Tab Group Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Tab Group Helper Tab Group Helper
ID llhkcebnebfiaamifhbpehjompplpnae
URL Oficial https://chromewebstore.google.com/detail/tab-group-helper/llhkcebnebfiaamifhbpehjompplpnae
Descrição Allow quick grouping of tabs by their attributes like title or URL
Tamanho do Arquivo 125 KB
Contagem de Instalações 102
Versão Atual 1.9.1
Última Atualização 2022-04-08
Data de Publicação 2021-04-13
Desenvolvedor Mike DiDomizio
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mikedidomizio/tab-group-helper
URL da Página de Ajuda https://github.com/mikedidomizio/tab-group-helper
Idiomas Suportados 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"
        }
    }
}