VIM typer

Use VIM keys in browser

什麼是VIM typer?

VIM typer是由sculpt0r開發的Chrome擴展程式,該擴展的主要功能是“Use VIM keys in browser”。

擴展截圖

screenshot

下載VIM typer擴展crx文件

下載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
官方網址 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
        }
    ]
}