Firenvim

Turn your browser into a Neovim GUI.

Firenvimคืออะไร?

Firenvim เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ghjuvan Lacambre และคุณลักษณะหลักของมันคือ "Turn your browser into a Neovim GUI."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Firenvim

ดาวน์โหลดไฟล์ส่วนขยาย 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 Firenvim
ID egpjdkipkomnmjhjmdamaniclmdlobbo
URL อย่างเป็นทางการ 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": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Turn your browser into a Neovim GUI.",
    "icons": {
        "16": "firenvim16.png",
        "48": "firenvim48.png",
        "128": "firenvim128.png"
    },
    "manifest_version": 2,
    "name": "Firenvim",
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "nativeMessaging",
        "storage"
    ],
    "version": "0.2.15",
    "web_accessible_resources": [
        "index.html",
        "ISSUE_TEMPLATE.md"
    ],
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk3pkgh862ElxtREZVPLxVNbiFWo9SnvZtZXZavNvs2GsUTY\/mB9yHTPBGJiBMJh6J0l+F5JZivXDG7xdQsVD5t39CL3JGtt93M2svlsNkOEYIMM8tHbp69shNUKKjZOfT3t+aZyigK2OUm7PKedcPeHtMoZAY5cC4L1ytvgo6lge+VYQiypKF87YOsO\/BGcs3D+MMdS454tLBuMp6LxMqICQEo\/Q7nHGC3eubtL3B09s0l17fJeq\/kcQphczKbUFhTVnNnIV0JX++UCWi+BP4QOpyk5FqI6+SVi+gxUosbQPOmZR4xCAbWWpg3OqMk4LqHaWpsBfkW9EUt6EMMMAfQIDAQAB"
}