ctrlw

A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!

¿Qué es ctrlw?

ctrlw es una extensión de Chrome desarrollada por Sam Lazarus, y su función principal es "A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!".

Descargar Archivo CRX de la Extensión ctrlw

Descarga archivos de extensión ctrlw 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

                        I wrote this extension after the thousandth time I had closed a tab while meaning to delete a word. If you are tired of Chrome hijacking your muscle memory on ^W, this extension is for you! It provides two commands, one which does nothing, and one which closes the current tab. If you map the former to Ctrl-W, and the latter to Alt-W, you will never again mistakenly close a tab!

A future version may include the expected Ctrl-W functionality, but don't hold your breath.                    

Información Básica de la Extensión

Nombre ctrlw ctrlw
ID goejokenmdamcapadhgghgpeeaeaaedc
URL Oficial https://chromewebstore.google.com/detail/ctrlw/goejokenmdamcapadhgghgpeeaeaaedc
Descripción A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!
Tamaño del Archivo 19.34 KB
Cantidad de Instalaciones 832
Versión Actual 0.0.1
Última Actualización 2018-08-01
Fecha de Publicación 2018-08-01
Calificación 3.82/5 Total de 17 Calificaciones
Desarrollador Sam Lazarus
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ctrlw",
    "author": "Sam Lazarus",
    "version": "0.0.1",
    "description": "A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/Icon16.png",
        "32": "images\/Icon32.png",
        "48": "images\/Icon48.png",
        "128": "images\/Icon128.png"
    },
    "commands": {
        "do-nothing": {
            "suggested-key": {
                "default": "Ctrl-W",
                "mac": "MacCtrl-W"
            },
            "description": "Do absolutely nothing!"
        },
        "close-tab": {
            "suggested-key": {
                "default": "Alt-W"
            },
            "description": "Close the current tab"
        }
    },
    "manifest_version": 2
}