Ctrl+W Don't Close Pinned Tabs

Ctrl+W Don't Close Pinned Tabs

Cos'è Ctrl+W Don't Close Pinned Tabs?

Ctrl+W Don't Close Pinned Tabs è un'estensione di Chrome sviluppata da Etaoin Wu, e la sua funzione principale è "Ctrl+W Don't Close Pinned Tabs".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Ctrl+W Don't Close Pinned Tabs

Scarica i file di estensione Ctrl+W Don't Close Pinned Tabs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Ctrl+W Don't Close Pinned Tabs Ctrl+W Don't Close Pinned Tabs
ID moidkadjmcagbnndbjdipocbdkcoknil
URL Ufficiale https://chrome.google.com/webstore/detail/ctrl+w-dont-close-pinned/moidkadjmcagbnndbjdipocbdkcoknil
Descrizione Ctrl+W Don't Close Pinned Tabs
Dimensione del File 8.5 KB
Conteggio Installazioni 139
Versione Corrente 1.0.0
Ultimo Aggiornamento 2022-02-14
Data di Pubblicazione 2021-05-15
Valutazione 3.67/5 Totale 6 Valutazioni
Sviluppatore Etaoin Wu
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/EtaoinWu/smart-ctrl-w
Lingue Supportate 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"
}