Close Tab Shortcut

Customize chrome shortcut to close current tab

Apa itu Close Tab Shortcut?

Close Tab Shortcut adalah ekstensi Chrome yang dikembangkan oleh Stanley Guevara, dan fitur utamanya adalah "Customize chrome shortcut to close current tab".

Unduh Berkas CRX Ekstensi Close Tab Shortcut

Unduh file ekstensi Close Tab Shortcut 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

                        Simple extension for closing active tab.

Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.                    

Informasi Dasar Ekstensi

Nama Close Tab Shortcut Close Tab Shortcut
ID oohndijkoieelbpmfehjecdihiiaecgb
URL Resmi https://chrome.google.com/webstore/detail/oohndijkoieelbpmfehjecdihiiaecgb
Deskripsi Customize chrome shortcut to close current tab
Ukuran File 3.21 KB
Jumlah Instalasi 11
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-10-16
Tanggal Publikasi 2016-10-16
Pengembang Stanley Guevara
Tipe Pembayaran free
Situs Ekstensi https://github.com/stanleyguevara/chrome-close-tab-shortcut
URL Halaman Bantuan https://github.com/stanleyguevara/chrome-close-tab-shortcut
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Close Tab Shortcut",
    "permissions": [
        "tabs"
    ],
    "version": "1.0",
    "description": "Customize chrome shortcut to close current tab",
    "commands": {
        "close-tab": {
            "suggested_key": {
                "default": "Alt+X",
                "mac": "Ctrl+X"
            },
            "description": "Close current tab"
        }
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    }
}