Vimflowy
Vim shortcuts for Workflowy
Vimflowyคืออะไร?
Vimflowy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sydney Wojnach และคุณลักษณะหลักของมันคือ "Vim shortcuts for Workflowy"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Vimflowy
ดาวน์โหลดไฟล์ส่วนขยาย Vimflowy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Vimflowy |
ID | jhoonlfajlaihdlcocigbpeacapaepng |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/vimflowy/jhoonlfajlaihdlcocigbpeacapaepng |
คำอธิบาย | Vim shortcuts for Workflowy |
ขนาดไฟล์ | 54.58 KB |
จำนวนการติดตั้ง | 213 |
เวอร์ชันปัจจุบัน | 0.0.5.2 |
อัปเดตครั้งล่าสุด | 2023-05-11 |
วันที่เผยแพร่ | 2020-06-12 |
คะแนน | 4.88/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | Sydney Wojnach |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Wojnach/vimflowy |
URL หน้าช่วยเหลือ | https://github.com/Wojnach/vimflowy/issues |
ภาษาที่รองรับ | 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" } |