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. 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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
} | |