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…

Cos'è Click Close Tab?

Click Close Tab è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…".

Scarica il file CRX dell'estensione Click Close Tab

Scarica i file di estensione Click Close Tab in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Click Close Tab Click Close Tab
ID mldgnecagdcghceibglikakhcmfcglkf
URL Ufficiale https://chromewebstore.google.com/detail/click-close-tab/mldgnecagdcghceibglikakhcmfcglkf
Descrizione A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…
Dimensione del File 3.68 KB
Conteggio Installazioni 45
Versione Corrente 1.2
Ultimo Aggiornamento 2017-11-15
Data di Pubblicazione 2017-11-15
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}