Vimflowy
Vim shortcuts for Workflowy
ما هو Vimflowy؟
Vimflowy هو إضافة Chrome تم تطويرها بواسطة Sydney Wojnach، والميزة الرئيسية لها هي "Vim shortcuts for Workflowy".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Vimflowy
قم بتنزيل ملفات الامتداد Vimflowy بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" } |