Close All Tabs On Left

Closes all tabs on the left of current tab

O que é Close All Tabs On Left?

Close All Tabs On Left é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Closes all tabs on the left of current tab".

Baixar o arquivo CRX da Extensão Close All Tabs On Left

Baixe arquivos de extensão Close All Tabs On Left 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

                        A very simple extension that closes all tabs left of the current tab in the current window. You can also use the shortcut Alt+Shift+Q to close the tabs.                    

Informações Básicas da Extensão

Nome Close All Tabs On Left Close All Tabs On Left
ID afmdjfefjcfmedhgbegphdjhfckifaij
URL Oficial https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij
Descrição Closes all tabs on the left of current tab
Tamanho do Arquivo 6.72 KB
Contagem de Instalações 1,286
Versão Atual 1.2
Última Atualização 2018-04-20
Data de Publicação 2018-04-20
Classificação 5.00/5 Total de 8 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Close All Tabs On Left",
    "description": "Closes all tabs on the left of current tab",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "commands": {
        "close-all-left-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+Q",
                "mac": "Alt+Shift+Q"
            },
            "description": "Close all tabs on the left of current tab"
        }
    },
    "permissions": [
        "tabs"
    ]
}