Autovim

Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.

Autovimคืออะไร?

Autovim เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Autovim ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                                            

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Autovim Autovim
ID licohjbphilmljmjonhiifkldfahnmja
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/autovim/licohjbphilmljmjonhiifkldfahnmja
คำอธิบาย Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.
ขนาดไฟล์ 28 KB
จำนวนการติดตั้ง 253
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2018-04-12
วันที่เผยแพร่ 2018-04-12
คะแนน 4.67/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.1",
    "name": "Autovim",
    "description": "Always enable vim in Colab. Also forces vim on any other website that uses CodeMirror elements.",
    "author": "Thomson Comer ",
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/colab.research.google.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "Autovim",
        "default_icon": "icon_128.png"
    },
    "web_accessible_resources": [
        "autovim.js"
    ]
}