Click Close Tab

A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…

O que é Click Close Tab?

Click Close Tab é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…".

Baixar o arquivo CRX da Extensão Click Close Tab

Baixe arquivos de extensão Click Close Tab 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 simple extension that will close tabs by clicking left & right mouse buttons at the same time.

Note: Works well on Windows, but is a bit screwy on OSX. In OSX, it only works if left clicking, holding left, then right clicking. This will not work if you've right clicked first and the context menu is open in OSX. If you right click and the context menu opens, left click elsewhere to close it, then left click, hold, right click to close the tab.                    

Informações Básicas da Extensão

Nome Click Close Tab Click Close Tab
ID mldgnecagdcghceibglikakhcmfcglkf
URL Oficial https://chromewebstore.google.com/detail/click-close-tab/mldgnecagdcghceibglikakhcmfcglkf
Descrição A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…
Tamanho do Arquivo 3.68 KB
Contagem de Instalações 45
Versão Atual 1.2
Última Atualização 2017-11-15
Data de Publicação 2017-11-15
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click Close Tab",
    "manifest_version": 2,
    "version": "1.2",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "click-close-tab.js"
            ],
            "run_at": "document_end"
        }
    ]
}