ctrlw
A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!
Co je ctrlw?
ctrlw je rozšíření Chrome vyvinuté Sam Lazarus, a jeho hlavní funkcí je „A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!“.
Stáhnout soubor CRX rozšíření ctrlw
Stáhněte si soubory rozšíření ctrlw ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | ctrlw |
ID | goejokenmdamcapadhgghgpeeaeaaedc |
Oficiální URL | https://chromewebstore.google.com/detail/ctrlw/goejokenmdamcapadhgghgpeeaeaaedc |
Popis | A no-op extension. Useful for killing the dreaded Ctrl-W hotkey! |
Velikost souboru | 19.34 KB |
Počet instalací | 832 |
Aktuální Verze | 0.0.1 |
Poslední Aktualizace | 2018-08-01 |
Datum Vydání | 2018-08-01 |
Hodnocení | 3.82/5 Celkem 17 Hodnocení |
Vývojář | Sam Lazarus |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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 } |