Firenvim
Turn your browser into a Neovim GUI.
Qu'est-ce que Firenvim ?
Firenvim est une extension Chrome développée par Ghjuvan Lacambre, et sa fonction principale est "Turn your browser into a Neovim GUI.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Firenvim
Téléchargez les fichiers d'extension Firenvim au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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()`
Informations de Base sur l'Extension
Nom | Firenvim |
ID | egpjdkipkomnmjhjmdamaniclmdlobbo |
URL Officiel | https://chromewebstore.google.com/detail/firenvim/egpjdkipkomnmjhjmdamaniclmdlobbo |
Description | Turn your browser into a Neovim GUI. |
Taille du Fichier | 325 KB |
Nombre d'Installations | 2,768 |
Version Actuelle | 0.2.15 |
Dernière Mise à Jour | 2023-08-12 |
Date de Publication | 2020-06-23 |
Évaluation | 4.87/5 Total 30 Évaluations |
Développeur | Ghjuvan Lacambre |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/glacambre/firenvim |
URL de la Page d'Aide | https://github.com/glacambre/firenvim/issues |
Langues Prises en Charge | 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": [ " |