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…

Co to jest Click Close Tab?

Click Close Tab to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…”.

Pobierz plik CRX rozszerzenia Click Close Tab

Pobierz pliki rozszerzeń Click Close Tab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Click Close Tab Click Close Tab
ID mldgnecagdcghceibglikakhcmfcglkf
Oficjalny URL https://chromewebstore.google.com/detail/click-close-tab/mldgnecagdcghceibglikakhcmfcglkf
Opis A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…
Rozmiar pliku 3.68 KB
Liczba instalacji 45
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2017-11-15
Data Publikacji 2017-11-15
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}