Vimmatic

Vimmatic enables Vim-like key binds in your web browser for easier and faster navigation.

Vimmatic란 무엇입니까?

Vimmatic은(는) Shin'ya Ueoka에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Vimmatic enables Vim-like key binds in your web browser for easier and faster navigation."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Vimmatic 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension enables you to navigate pages, switch tabs, and open a site you want with your keyboard.  The extension provides a Vim-like experience on your browser and a new choice for Vim users.  You can configure keymaps and browse pages with your preferences.

# Quick start

After installation, you can control Firefox with vim-like keymaps. To scroll a page in the browser, press `k`, `j`, `h` and `l` keys. You can scroll to the top or the bottom of a page by `gg` and `G`.  To select a left and right of current tab, use `K` and `J` respectively. To close current tab, use `d` and to restore closed tabs, use `u`.  To open a link, press `f` to enter the follow mode to select a link. Then you can select links by alphabetic keys.

Vimmatic supports command line to run commands that control tabs and opens a tab. To open command line, press `:`.  To open a tab with URL, use `open` command.  You can select completed items by `Tab` and `Shift`+`Tab`

For usage and more detailed information, check out our documentation:
https://ueokande.github.io/vimmatic/

The development of Vimmatic is publically available as open-source software.  Feel free to contact us at github.com:
https://github.com/ueokande/vimmatic                    

확장 프로그램 기본 정보

이름 Vimmatic Vimmatic
ID pghmfgnakhjiphmlcnhfpgopkcjhiedc
공식 URL https://chromewebstore.google.com/detail/vimmatic/pghmfgnakhjiphmlcnhfpgopkcjhiedc
설명 Vimmatic enables Vim-like key binds in your web browser for easier and faster navigation.
파일 크기 2.15 MB
설치 횟수 236
현재 버전 0.7.1
최근 업데이트 2024-03-06
출시 날짜 2023-03-21
평점 5.00/5 총 4 개의 평점
개발자 Shin'ya Ueoka
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ueokande/vimmatic
도움말 페이지 URL https://github.com/ueokande/vimmatic/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Vimmatic",
    "description": "Vimmatic enables Vim-like key binds in your web browser for easier and faster navigation.",
    "icons": {
        "48": "resources\/icon_48x48.png",
        "96": "resources\/icon_96x96.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "lib\/content.js"
            ],
            "run_at": "document_start",
            "match_about_blank": true
        }
    ],
    "background": {
        "service_worker": "lib\/background.js"
    },
    "permissions": [
        "history",
        "sessions",
        "storage",
        "tabs",
        "notifications",
        "bookmarks"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "lib\/console.html",
                "lib\/console.css",
                "lib\/console.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_ui": {
        "page": "lib\/options.html"
    },
    "action": {
        "default_icon": {
            "32": "resources\/enabled_32x32.png"
        },
        "default_title": "Vimmatic"
    },
    "version": "0.7.1"
}