Firenvim
Turn your browser into a Neovim GUI.
O que é Firenvim?
Firenvim é uma extensão do Chrome desenvolvida por Ghjuvan Lacambre, e sua principal característica é "Turn your browser into a Neovim GUI.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Firenvim
Baixe arquivos de extensão Firenvim no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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()`
Informações Básicas da Extensão
Nome | Firenvim |
ID | egpjdkipkomnmjhjmdamaniclmdlobbo |
URL Oficial | https://chromewebstore.google.com/detail/firenvim/egpjdkipkomnmjhjmdamaniclmdlobbo |
Descrição | Turn your browser into a Neovim GUI. |
Tamanho do Arquivo | 325 KB |
Contagem de Instalações | 2,768 |
Versão Atual | 0.2.15 |
Última Atualização | 2023-08-12 |
Data de Publicação | 2020-06-23 |
Classificação | 4.87/5 Total de 30 Avaliações |
Desenvolvedor | Ghjuvan Lacambre |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/glacambre/firenvim |
URL da Página de Ajuda | https://github.com/glacambre/firenvim/issues |
Idiomas Suportados | 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": [ " |