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…

Vad är Click Close Tab?

Click Close Tab är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…".

Ladda ner Click Close Tab-förlängningens CRX-fil

Ladda ner Click Close Tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Click Close Tab Click Close Tab
ID mldgnecagdcghceibglikakhcmfcglkf
Officiell webbadress https://chromewebstore.google.com/detail/click-close-tab/mldgnecagdcghceibglikakhcmfcglkf
Beskrivning A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…
Filstorlek 3.68 KB
Antal Installationer 45
Aktuell Version 1.2
Senast Uppdaterad 2017-11-15
Publiceringsdatum 2017-11-15
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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"
        }
    ]
}