Manage Tabs by Domain

Close and gather same-domain tabs.

O que é Manage Tabs by Domain?

Manage Tabs by Domain é uma extensão do Chrome desenvolvida por Nicole White, e sua principal característica é "Close and gather same-domain tabs.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Manage Tabs by Domain

Baixe arquivos de extensão Manage 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

                        Tabs with the same domain as the active tab can be closed with CMD + Shift + X or gathered around the active tab with CMD + Shift + A. All same-domain tabs can be gathered with CMD + Shift + L. Alternatively, tabs can be managed by clicking on the extension's button and selecting Close, Gather, or Gather All.

You can edit the hotkeys that close or gather tabs at the bottom of chrome://extensions/                    

Informações Básicas da Extensão

Nome Manage Tabs by Domain Manage Tabs by Domain
ID jgjhgpeaejjahlbcgijdibooomicdcfi
URL Oficial https://chromewebstore.google.com/detail/manage-tabs-by-domain/jgjhgpeaejjahlbcgijdibooomicdcfi
Descrição Close and gather same-domain tabs.
Tamanho do Arquivo 1.08 MB
Contagem de Instalações 362
Versão Atual 0.0.2
Última Atualização 2017-06-19
Data de Publicação 2017-06-18
Classificação 4.11/5 Total de 9 Avaliações
Desenvolvedor Nicole White
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/nicolewhite/same-domain-tabs/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Manage Tabs by Domain",
    "short_name": "Manage Tabs",
    "description": "Close and gather same-domain tabs.",
    "version": "0.0.2",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "commands"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "gather-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Gather same-domain tabs around active tab."
        },
        "close-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "Command+Shift+X"
            },
            "description": "Close same-domain tabs as active tab."
        },
        "gather-tabs-all": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Gather all same-domain tabs."
        }
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}