Firenvim
Turn your browser into a Neovim GUI.
Cos'è Firenvim?
Firenvim è un'estensione di Chrome sviluppata da Ghjuvan Lacambre, e la sua funzione principale è "Turn your browser into a Neovim GUI.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Firenvim
Scarica i file di estensione Firenvim in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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()`
Informazioni di Base sull'Estensione
Nome | Firenvim |
ID | egpjdkipkomnmjhjmdamaniclmdlobbo |
URL Ufficiale | https://chromewebstore.google.com/detail/firenvim/egpjdkipkomnmjhjmdamaniclmdlobbo |
Descrizione | Turn your browser into a Neovim GUI. |
Dimensione del File | 325 KB |
Conteggio Installazioni | 2,768 |
Versione Corrente | 0.2.15 |
Ultimo Aggiornamento | 2023-08-12 |
Data di Pubblicazione | 2020-06-23 |
Valutazione | 4.87/5 Totale 30 Valutazioni |
Sviluppatore | Ghjuvan Lacambre |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/glacambre/firenvim |
URL della Pagina di Aiuto | https://github.com/glacambre/firenvim/issues |
Lingue Supportate | 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": [ " |