Firenvim
Turn your browser into a Neovim GUI.
Firenvim क्या है?
Firenvim Ghjuvan Lacambre द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Turn your browser into a Neovim GUI."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Firenvim एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | 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": [ " |