ctrlw
A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!
Vad är ctrlw?
ctrlw är en Chrome-tillägg utvecklad av Sam Lazarus, och dess huvudfunktion är "A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!".
Ladda ner ctrlw-förlängningens CRX-fil
Ladda ner ctrlw-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | goejokenmdamcapadhgghgpeeaeaaedc |
| Officiell webbadress | https://chromewebstore.google.com/detail/ctrlw/goejokenmdamcapadhgghgpeeaeaaedc |
| Beskrivning | A no-op extension. Useful for killing the dreaded Ctrl-W hotkey! |
| Filstorlek | 19.34 KB |
| Antal Installationer | 832 |
| Aktuell Version | 0.0.1 |
| Senast Uppdaterad | 2018-08-01 |
| Publiceringsdatum | 2018-08-01 |
| Betyg | 3.82/5 Totalt 17 Betyg |
| Utvecklare | Sam Lazarus |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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
} | |