Checkvist extended commands
Adds some more VIM oriented commands to Checkvist
ما هو Checkvist extended commands؟
Checkvist extended commands هو إضافة Chrome تم تطويرها بواسطة NicoSantangelo، والميزة الرئيسية لها هي "Adds some more VIM oriented commands to Checkvist".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Checkvist extended commands
قم بتنزيل ملفات الامتداد Checkvist extended commands بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
# What It adds four new commands to Checkvist (https://checkvist.com) Commands: l - Expand node (same as `→`) L - Focus the list item (same as `Shift →`) h - Collapse node (same as `←`) H - Un-focus the list item (same as `Shift ←`) o - Add below (same as `enter`) O - Add above (same as `alt+enter`) G - Go to the last item in the tree (same as `End` or `Fn+Down`) alt+g alt+g - Go to the first item in the tree (same as `Home` or `Fn+Up`) meta+j - macOS users: Move list items down (same as `⌘ ↓`) meta+k - macOS users: Move list items up (same as `⌘ ↑`) You can find the code at https://github.com/NicoSantangelo/checkvist-extended-commands
معلومات أساسية عن التمديد
الاسم | Checkvist extended commands |
ID | fofahggocngkjhdjmpplnaebognbkfmo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/checkvist-extended-comman/fofahggocngkjhdjmpplnaebognbkfmo |
الوصف | Adds some more VIM oriented commands to Checkvist |
حجم الملف | 41.83 KB |
عدد التثبيتات | 28 |
النسخة الحالية | 2.2.0 |
آخر تحديث | 2017-04-24 |
تاريخ النشر | 2017-04-23 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | NicoSantangelo |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/NicoSantangelo/checkvist-extended-commands |
عنوان صفحة المساعدة | https://github.com/NicoSantangelo/checkvist-extended-commands |
عنوان صفحة سياسة الخصوصية | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Checkvist extended commands", "description": "Adds some more VIM oriented commands to Checkvist", "short_name": "Checkvist commands", "version": "2.2.0", "icons": { "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/checkvist.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "commands.js" ] } |