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…

Qu'est-ce que Click Close Tab ?

Click Close Tab est une extension Chrome développée par Unknown, et sa fonction principale est "A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…".

Télécharger le fichier CRX de l'extension Click Close Tab

Téléchargez les fichiers d'extension Click Close Tab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Click Close Tab Click Close Tab
ID mldgnecagdcghceibglikakhcmfcglkf
URL Officiel https://chromewebstore.google.com/detail/click-close-tab/mldgnecagdcghceibglikakhcmfcglkf
Description A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…
Taille du Fichier 3.68 KB
Nombre d'Installations 45
Version Actuelle 1.2
Dernière Mise à Jour 2017-11-15
Date de Publication 2017-11-15
Évaluation 5.00/5 Total 2 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}