Firenvim
Turn your browser into a Neovim GUI.
什麼是Firenvim?
Firenvim是由Ghjuvan Lacambre開發的Chrome擴展程式,該擴展的主要功能是“Turn your browser into a Neovim GUI.”。
擴展截圖
下載Firenvim擴展crx文件
下載Firenvim擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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": [ " |