Ctrl+W Don't Close Pinned Tabs

Ctrl+W Don't Close Pinned Tabs

Apa itu Ctrl+W Don't Close Pinned Tabs?

Ctrl+W Don't Close Pinned Tabs adalah ekstensi Chrome yang dikembangkan oleh Etaoin Wu, dan fitur utamanya adalah "Ctrl+W Don't Close Pinned Tabs".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Ctrl+W Don't Close Pinned Tabs

Unduh file ekstensi Ctrl+W Don't Close Pinned Tabs 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

                        This Chrome extension simulates Firefox's behavior on the hotkey Ctrl-W on a pinned tab; it does NOT close the tab. Instead, it navigate to the first non-pinned tab.

Usage: You need to *explicitly* bind the key to ctrl-W in "Keyboard Shortcuts" in chrome://extensions/ to use the functionality (as in the screenshot). This is not possible to do automatically.

Source: https://github.com/EtaoinWu/smart-ctrl-w                    

Informasi Dasar Ekstensi

Nama Ctrl+W Don't Close Pinned Tabs Ctrl+W Don't Close Pinned Tabs
ID moidkadjmcagbnndbjdipocbdkcoknil
URL Resmi https://chrome.google.com/webstore/detail/ctrl+w-dont-close-pinned/moidkadjmcagbnndbjdipocbdkcoknil
Deskripsi Ctrl+W Don't Close Pinned Tabs
Ukuran File 8.5 KB
Jumlah Instalasi 139
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2022-02-14
Tanggal Publikasi 2021-05-15
Penilaian 3.67/5 Total 6 Penilaian
Pengembang Etaoin Wu
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/EtaoinWu/smart-ctrl-w
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ctrl+W Don't Close Pinned Tabs",
    "version": "1.0.0",
    "description": "Ctrl+W Don't Close Pinned Tabs",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Etaoin Wu ",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs"
    ],
    "commands": {
        "smart-ctrl-w": {
            "suggested_key": {
                "default": "Ctrl+W",
                "mac": "Command+W"
            },
            "description": "Close This Tab (Bind to Ctrl+W)"
        }
    },
    "minimum_chrome_version": "33"
}