Firenvim
Turn your browser into a Neovim GUI.
What is Firenvim?
Firenvim is a Chrome extension developed by Ghjuvan Lacambre, and its main feature is "Turn your browser into a Neovim GUI.".
Extension Screenshots
Download Firenvim Extension CRX File
Download Firenvim extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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()`
Extension Basic Information
Name | Firenvim |
ID | egpjdkipkomnmjhjmdamaniclmdlobbo |
Official URL | https://chromewebstore.google.com/detail/firenvim/egpjdkipkomnmjhjmdamaniclmdlobbo |
Description | Turn your browser into a Neovim GUI. |
File Size | 325 KB |
Installation Count | 2,768 |
Current Version | 0.2.15 |
Last Updated | 2023-08-12 |
Publish Date | 2020-06-23 |
Rating | 4.87/5 Total 30 Ratings |
Developer | Ghjuvan Lacambre |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/glacambre/firenvim |
Help Page URL | https://github.com/glacambre/firenvim/issues |
Supported Languages | 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": [ " |