ctrlw
A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!
ctrlw là gì?
ctrlw là một tiện ích mở rộng Chrome được phát triển bởi Sam Lazarus, và tính năng chính của nó là "A no-op extension. Useful for killing the dreaded Ctrl-W hotkey!".
Tải xuống tệp CRX của tiện ích mở rộng ctrlw
Tải xuống các tệp mở rộng ctrlw dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ctrlw |
ID | goejokenmdamcapadhgghgpeeaeaaedc |
URL Chính Thức | https://chromewebstore.google.com/detail/ctrlw/goejokenmdamcapadhgghgpeeaeaaedc |
Mô tả | A no-op extension. Useful for killing the dreaded Ctrl-W hotkey! |
Kích Thước Tệp | 19.34 KB |
Số Lần Cài Đặt | 832 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2018-08-01 |
Ngày Phát Hành | 2018-08-01 |
Đánh Giá | 3.82/5 Tổng số 17 Đánh Giá |
Nhà Phát Triển | Sam Lazarus |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |