ctrlw
A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!
ctrlwとは何ですか?
ctrlwはSam Lazarusによって開発されたChromeの拡張機能で、その主な機能は「A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!」です。
ctrlw拡張機能のCRXファイルをダウンロード
ctrlw拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | ctrlw |
ID | goejokenmdamcapadhgghgpeeaeaaedc |
公式URL | https://chromewebstore.google.com/detail/ctrlw/goejokenmdamcapadhgghgpeeaeaaedc |
説明 | A no-op extension. Useful for killing the dreaded Ctrl-W hotkey! |
ファイルサイズ | 19.34 KB |
インストール数 | 832 |
現在のバージョン | 0.0.1 |
最終更新日 | 2018-08-01 |
公開日 | 2018-08-01 |
評価 | 3.82/5 合計 17 レビュー |
開発者 | Sam Lazarus |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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 } |