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…

Apa itu Click Close Tab?

Click Close Tab adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…".

Unduh Berkas CRX Ekstensi Click Close Tab

Unduh file ekstensi Click Close Tab dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Click Close Tab Click Close Tab
ID mldgnecagdcghceibglikakhcmfcglkf
URL Resmi https://chromewebstore.google.com/detail/click-close-tab/mldgnecagdcghceibglikakhcmfcglkf
Deskripsi A simple extension that will close tabs by clicking left & right mouse buttons at the same time. Note: Works well on Windows, but…
Ukuran File 3.68 KB
Jumlah Instalasi 45
Versi Saat Ini 1.2
Terakhir Diperbarui 2017-11-15
Tanggal Publikasi 2017-11-15
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}