Vimflowy
Vim shortcuts for Workflowy
Vimflowy là gì?
Vimflowy là một tiện ích mở rộng Chrome được phát triển bởi Sydney Wojnach, và tính năng chính của nó là "Vim shortcuts for Workflowy".
Ả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 Vimflowy
Tải xuống các tệp mở rộng Vimflowy 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 adds (some) VIM keyboard shortcuts to Workflowy.com. It allows you to be more efficient in your work by emphasizing a mouse free interaction and placement of hand in the home row. It features modal based editing in which you mainly switch between two major modes: - normal mode: deals exclusively with editing of text and bullets. - Insert mode: simply takes input from the user. These keyboard shortcuts are similar, if not identical, in their behaviour to the ones that can be found in the text editor called VIM. All VIM behaviours are not supported yet. New shortcuts are continously added. Please refer to the following page for the full list of the supported shortcuts: https://github.com/Wojnach/vimflowy Please report any bugs you might find to: https://github.com/Wojnach/vimflowy/issues
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Vimflowy |
ID | jhoonlfajlaihdlcocigbpeacapaepng |
URL Chính Thức | https://chromewebstore.google.com/detail/vimflowy/jhoonlfajlaihdlcocigbpeacapaepng |
Mô tả | Vim shortcuts for Workflowy |
Kích Thước Tệp | 54.58 KB |
Số Lần Cài Đặt | 213 |
Phiên Bản Hiện Tại | 0.0.5.2 |
Cập Nhật Lần Cuối | 2023-05-11 |
Ngày Phát Hành | 2020-06-12 |
Đánh Giá | 4.88/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | Sydney Wojnach |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Wojnach/vimflowy |
URL Trang Trợ Giúp | https://github.com/Wojnach/vimflowy/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Vimflowy", "short_name": "Vimflowy", "description": "Vim shortcuts for Workflowy", "version": "0.0.5.2", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/workflowy.com\/*", "https:\/\/*.workflowy.com\/*" ], "run_at": "document_start", "js": [ "contentscript_start.js" ] }, { "matches": [ "https:\/\/workflowy.com\/*", "https:\/\/*.workflowy.com\/*" ], "run_at": "document_idle", "js": [ "contentscript_idle.js" ] } ], "web_accessible_resources": [ "state.js", "TimeTagCounter.js", "easyMotion.js", "cursorMovement.js", "vimflowyFunctionLibrary.js", "keybindings.js", "transparentKeybindings.js", "vimflowy.js", "options.js" ], "permissions": [ "https:\/\/workflowy.com\/*", "https:\/\/*.workflowy.com\/*", "storage" ], "options_page": "options.html" } |