Vimmatic

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

Vimmatic là gì?

Vimmatic là một tiện ích mở rộng Chrome được phát triển bởi Shin'ya Ueoka, và tính năng chính của nó là "Vimmatic enables Vim-like key binds in your web browser for easier and faster navigation.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Vimmatic

Tải xuống các tệp mở rộng Vimmatic dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Vimmatic Vimmatic
ID pghmfgnakhjiphmlcnhfpgopkcjhiedc
URL Chính Thức https://chromewebstore.google.com/detail/vimmatic/pghmfgnakhjiphmlcnhfpgopkcjhiedc
Mô tả Vimmatic enables Vim-like key binds in your web browser for easier and faster navigation.
Kích Thước Tệp 2.15 MB
Số Lần Cài Đặt 236
Phiên Bản Hiện Tại 0.7.1
Cập Nhật Lần Cuối 2024-03-06
Ngày Phát Hành 2023-03-21
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Shin'ya Ueoka
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ueokande/vimmatic
URL Trang Trợ Giúp https://github.com/ueokande/vimmatic/issues
Ngôn Ngữ Được Hỗ Trợ 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"
}