Firenvim
Turn your browser into a Neovim GUI.
Firenvim là gì?
Firenvim là một tiện ích mở rộng Chrome được phát triển bởi Ghjuvan Lacambre, và tính năng chính của nó là "Turn your browser into a Neovim GUI.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Firenvim
Tải xuống các tệp mở rộng Firenvim dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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()`
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Firenvim |
ID | egpjdkipkomnmjhjmdamaniclmdlobbo |
URL Chính Thức | https://chromewebstore.google.com/detail/firenvim/egpjdkipkomnmjhjmdamaniclmdlobbo |
Mô tả | Turn your browser into a Neovim GUI. |
Kích Thước Tệp | 325 KB |
Số Lần Cài Đặt | 2,768 |
Phiên Bản Hiện Tại | 0.2.15 |
Cập Nhật Lần Cuối | 2023-08-12 |
Ngày Phát Hành | 2020-06-23 |
Đánh Giá | 4.87/5 Tổng số 30 Đánh Giá |
Nhà Phát Triển | Ghjuvan Lacambre |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/glacambre/firenvim |
URL Trang Trợ Giúp | https://github.com/glacambre/firenvim/issues |
Ngôn Ngữ Được Hỗ Trợ | 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": [ " |