Firenvim
Turn your browser into a Neovim GUI.
ما هو Firenvim؟
Firenvim هو إضافة Chrome تم تطويرها بواسطة Ghjuvan Lacambre، والميزة الرئيسية لها هي "Turn your browser into a Neovim GUI.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Firenvim
قم بتنزيل ملفات الامتداد Firenvim بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This Chrome extension lets you use Neovim directly from your browser. Contrary to other extensions, it does not open a new OS window. In order to install it you need: - This Chrome addon - Neovim >=0.4.0 - The firenvim neovim plugin: https://github.com/glacambre/firenvim - Once the firenvim neovim plugin is installed, run `:call firenvim#install()`
معلومات أساسية عن التمديد
الاسم | Firenvim |
ID | egpjdkipkomnmjhjmdamaniclmdlobbo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/firenvim/egpjdkipkomnmjhjmdamaniclmdlobbo |
الوصف | Turn your browser into a Neovim GUI. |
حجم الملف | 325 KB |
عدد التثبيتات | 2,768 |
النسخة الحالية | 0.2.15 |
آخر تحديث | 2023-08-12 |
تاريخ النشر | 2020-06-23 |
تقييم | 4.87/5 مجموع تقييمات 30 |
المطور | Ghjuvan Lacambre |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/glacambre/firenvim |
عنوان صفحة المساعدة | https://github.com/glacambre/firenvim/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "background.js" ] }, "browser_action": { "browser_style": true, "default_icon": "firenvim128.png", "default_popup": "browserAction.html", "default_title": "Firenvim" }, "commands": { "nvimify": { "description": "Turn the currently focused element into a neovim iframe.", "suggested_key": { "default": "Ctrl+E" } }, "send_C-n": { "description": "Send Ctrl-n to firenvim." }, "send_C-t": { "description": "Send Ctrl-t to firenvim." }, "send_C-w": { "description": "Send Ctrl-w to firenvim." }, "toggle_firenvim": { "description": "Toggle Firenvim in the current tab." } }, "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "match_about_blank": true, "matches": [ " |