VIM typer

Use VIM keys in browser

VIM typerคืออะไร?

VIM typer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sculpt0r และคุณลักษณะหลักของมันคือ "Use VIM keys in browser"

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

screenshot

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

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

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

                        This extension allows use vim keys for text editing. Other vim plugins allows you to navigate in browser or webpage. This extension allows you to use vim keys while typing in input fields.

Enable vim keys
Plugins functionality can be toggled with special key combination:
- `alt` + `v` on windows / linux
- `right option` + `left cmd` on macOS

It is because, sometimes you may don't want to `VIM typer` interfere with other vim like plugins.

Please look at the indicator (small red square in top left corner). When it becomes green: the plugin functions are available.

# supported keys
Currently, `vim-typer` supports:
- `h`,`j`,`k`,`l`
- `e`
- `w` has early support
- more are planned                    

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

ชื่อ VIM typer VIM typer
ID cmepghbdejbphecnknahlhmkfjfcllki
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/vim-typer/cmepghbdejbphecnknahlhmkfjfcllki
คำอธิบาย Use VIM keys in browser
ขนาดไฟล์ 5.62 KB
จำนวนการติดตั้ง 106
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2023-11-03
วันที่เผยแพร่ 2021-06-01
คะแนน 4.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา sculpt0r
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sculpt0r/vim-browser-extension
URL หน้าช่วยเหลือ https://github.com/sculpt0r/vim-browser-extension/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "VIM typer",
    "version": "1.1.0",
    "description": "Use VIM keys in browser",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                ".\/plugin.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}