Group Tabs By Domain

New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.

O que é Group Tabs By Domain?

Group Tabs By Domain é uma extensão do Chrome desenvolvida por grouptabsbydomain, e sua principal característica é "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Group Tabs By Domain

Baixe arquivos de extensão Group Tabs By Domain 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

                        Group all the tabs by domain/website url. This will help user to keep tabs organized.

New tabs are automatically moved to the correct group. If no group is available then new group will be created.

It groups all tabs by top level domain. group name will be GOOGLE for both below url(s).
https://google.com
https://docs.google.com                    

Informações Básicas da Extensão

Nome Group Tabs By Domain Group Tabs By Domain
ID icmbnkmjhdapliaologdghjfpcmcimln
URL Oficial https://chromewebstore.google.com/detail/group-tabs-by-domain/icmbnkmjhdapliaologdghjfpcmcimln
Descrição New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.
Tamanho do Arquivo 63.21 KB
Contagem de Instalações 3,084
Versão Atual 0.0.0.1
Última Atualização 2022-06-08
Data de Publicação 2022-06-08
Classificação 4.52/5 Total de 31 Avaliações
Desenvolvedor grouptabsbydomain
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Group Tabs By Domain",
    "version": "0.0.0.1",
    "description": "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs.",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabGroups",
        "tabs"
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "commands": {
        "group-tabs-by-domain": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left",
                "mac": "Command+Shift+Left"
            },
            "description": "New tabs are automatically moved to the correct tab group. Additionaly you can ctrl + shift + left arrow to group all tabs."
        }
    }
}