VIM typer
Use VIM keys in browser
VIM typer là gì?
VIM typer là một tiện ích mở rộng Chrome được phát triển bởi sculpt0r, và tính năng chính của nó là "Use VIM keys in browser".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng VIM typer
Tải xuống các tệp mở rộng VIM typer 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
This extension allows use vim keys for text editing. Other vim plugins allows you to navigate in browser or webpage. This extension allows you to use vim keys while typing in input fields. Enable vim keys Plugins functionality can be toggled with special key combination: - `alt` + `v` on windows / linux - `right option` + `left cmd` on macOS It is because, sometimes you may don't want to `VIM typer` interfere with other vim like plugins. Please look at the indicator (small red square in top left corner). When it becomes green: the plugin functions are available. # supported keys Currently, `vim-typer` supports: - `h`,`j`,`k`,`l` - `e` - `w` has early support - more are planned
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | VIM typer |
ID | cmepghbdejbphecnknahlhmkfjfcllki |
URL Chính Thức | https://chromewebstore.google.com/detail/vim-typer/cmepghbdejbphecnknahlhmkfjfcllki |
Mô tả | Use VIM keys in browser |
Kích Thước Tệp | 5.62 KB |
Số Lần Cài Đặt | 106 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2023-11-03 |
Ngày Phát Hành | 2021-06-01 |
Đánh Giá | 4.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | sculpt0r |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/sculpt0r/vim-browser-extension |
URL Trang Trợ Giúp | https://github.com/sculpt0r/vim-browser-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "VIM typer", "version": "1.1.0", "description": "Use VIM keys in browser", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*\/*" ], "js": [ ".\/plugin.js" ], "run_at": "document_start", "all_frames": true } ] } |