Close All Tabs On Left

Closes all tabs on the left of current tab

Apa itu Close All Tabs On Left?

Close All Tabs On Left adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Closes all tabs on the left of current tab".

Unduh Berkas CRX Ekstensi Close All Tabs On Left

Unduh file ekstensi Close All Tabs On Left 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 very simple extension that closes all tabs left of the current tab in the current window. You can also use the shortcut Alt+Shift+Q to close the tabs.                    

Informasi Dasar Ekstensi

Nama Close All Tabs On Left Close All Tabs On Left
ID afmdjfefjcfmedhgbegphdjhfckifaij
URL Resmi https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij
Deskripsi Closes all tabs on the left of current tab
Ukuran File 6.72 KB
Jumlah Instalasi 1,286
Versi Saat Ini 1.2
Terakhir Diperbarui 2018-04-20
Tanggal Publikasi 2018-04-20
Penilaian 5.00/5 Total 8 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Close All Tabs On Left",
    "description": "Closes all tabs on the left of current tab",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "commands": {
        "close-all-left-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+Q",
                "mac": "Alt+Shift+Q"
            },
            "description": "Close all tabs on the left of current tab"
        }
    },
    "permissions": [
        "tabs"
    ]
}