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
官方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
        }
    ]
}