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
Eメール [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
        }
    ]
}