Ctrl+W Don't Close Pinned Tabs

Ctrl+W Don't Close Pinned Tabs

¿Qué es Ctrl+W Don't Close Pinned Tabs?

Ctrl+W Don't Close Pinned Tabs es una extensión de Chrome desarrollada por Etaoin Wu, y su función principal es "Ctrl+W Don't Close Pinned Tabs".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Ctrl+W Don't Close Pinned Tabs

Descarga archivos de extensión Ctrl+W Don't Close Pinned Tabs en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Ctrl+W Don't Close Pinned Tabs Ctrl+W Don't Close Pinned Tabs
ID moidkadjmcagbnndbjdipocbdkcoknil
URL Oficial https://chrome.google.com/webstore/detail/ctrl+w-dont-close-pinned/moidkadjmcagbnndbjdipocbdkcoknil
Descripción Ctrl+W Don't Close Pinned Tabs
Tamaño del Archivo 8.5 KB
Cantidad de Instalaciones 139
Versión Actual 1.0.0
Última Actualización 2022-02-14
Fecha de Publicación 2021-05-15
Calificación 3.67/5 Total de 6 Calificaciones
Desarrollador Etaoin Wu
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/EtaoinWu/smart-ctrl-w
Idiomas Soportados 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"
}