Vimium

The Hacker's Browser. Vimium provides keyboard shortcuts for navigation and control in the spirit of Vim.

Vimium là gì?

Vimium là một tiện ích mở rộng Chrome được phát triển bởi Ilya Sukhar, Phil Crosby, Stephen Blott, và tính năng chính của nó là "The Hacker's Browser. Vimium provides keyboard shortcuts for navigation and control in the spirit of Vim.".

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

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

Tải xuống các tệp mở rộng Vimium 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

                        *NOTE* Google does not allow Vimium to run on this Chrome Web Store page and the Chrome New Tab page, by design. Sorry about that!

*NOTE* Chrome has some alarmist messaging around the permissions that Vimium needs to run. Really all it's asking for is that Vimium's javascript be loaded into every page. Don't be alarmed. Vimium never talks to any servers and does absolutely nothing with your data. Read the open source code if you're curious.

For more information about rebinding your keys and how to use many of Vimium's features, see here: https://github.com/philc/vimium/blob/master/README.md

Modifier keys are specified as , ,  for ctrl+x, meta+x, and alt+x respectively.

Navigating the current page:

    ?       show the help dialog for a list of all available keys
    h       scroll left
    j       scroll down
    k       scroll up
    l       scroll right
    gg      scroll to top of the page
    G       scroll to bottom of the page
    d       scroll down half a page
    u       scroll up half a page
    f       open a link in the current tab
    F       open a link in a new tab
    r       reload
    gs      view source
    i       enter insert mode -- all commands will be ignored until you hit esc to exit
    yy      copy the current url to the clipboard
    yf      copy a link url to the clipboard
    gf      cycle forward to the next frame

Navigating to new pages:

    o       Open URL, bookmark, or history entry
    O       Open URL, bookmark, history entry in a new tab
    b       Open bookmark
    B       Open bookmark in a new tab

Using find:

    /       enter find mode -- type your search query and hit enter to search or esc to cancel
    n       cycle forward to the next find match
    N       cycle backward to the previous find match

Navigating your history:

    H       go back in history
    L       go forward in history

Manipulating tabs:

    J, gT      go one tab left
    K, gt      go one tab right
    g0         go to the first tab
    g$         go to the last tab
    t          create tab
    x          close current tab
    X          restore closed tab (i.e. unwind the 'x' command)
    T          search through your open tabs

Additional advanced browsing commands:

    ]]      Follow the link labeled 'next' or '>'. Helpful for browsing paginated sites.
    [[      Follow the link labeled 'previous' or '<'. Helpful for browsing paginated sites.
       open multiple links in a new tab
    gi      focus the first (or n-th) text input box on the page
    gu      go up one level in the URL hierarchy

Vimium supports command repetition so, for example, hitting '5t' will open 5 tabs in rapid succession. ESC (or ) will clear any partial commands in the queue and will also exit insert and find modes.

Release notes, see:

- https://github.com/philc/vimium/blob/master/CHANGELOG.md                    

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

Tên Vimium Vimium
ID dbepggeogbaibhgnhhndojpepiihcmeb
URL Chính Thức https://chromewebstore.google.com/detail/vimium/dbepggeogbaibhgnhhndojpepiihcmeb
Mô tả The Hacker's Browser. Vimium provides keyboard shortcuts for navigation and control in the spirit of Vim.
Kích Thước Tệp 257 KB
Số Lần Cài Đặt 500,000
Phiên Bản Hiện Tại 2.0.5
Cập Nhật Lần Cuối 2024-01-02
Ngày Phát Hành 2020-03-02
Đánh Giá 4.82/5 Tổng số 4388 Đánh Giá
Nhà Phát Triển Ilya Sukhar, Phil Crosby, Stephen Blott
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://vimium.github.io
URL Trang Trợ Giúp https://github.com/philc/vimium/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Vimium",
    "version": "2.0.5",
    "description": "The Hacker's Browser. Vimium provides keyboard shortcuts for navigation and control in the spirit of Vim.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "minimum_chrome_version": "105.0",
    "background": {
        "service_worker": "background_scripts\/background.js",
        "type": "module"
    },
    "options_ui": {
        "page": "pages\/options.html",
        "browser_style": false,
        "open_in_tab": true
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "tabs",
        "bookmarks",
        "history",
        "storage",
        "sessions",
        "notifications",
        "scripting",
        "favicon",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/utils.js",
                "lib\/keyboard_utils.js",
                "lib\/dom_utils.js",
                "lib\/rect.js",
                "lib\/handler_stack.js",
                "lib\/settings.js",
                "lib\/find_mode_history.js",
                "content_scripts\/mode.js",
                "content_scripts\/ui_component.js",
                "content_scripts\/link_hints.js",
                "content_scripts\/vomnibar.js",
                "content_scripts\/scroller.js",
                "content_scripts\/marks.js",
                "content_scripts\/mode_insert.js",
                "content_scripts\/mode_find.js",
                "content_scripts\/mode_key_handler.js",
                "content_scripts\/mode_visual.js",
                "content_scripts\/hud.js",
                "content_scripts\/mode_normal.js",
                "content_scripts\/vimium_frontend.js"
            ],
            "css": [
                "content_scripts\/vimium.css"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        },
        {
            "matches": [
                "file:\/\/\/",
                "file:\/\/\/*\/"
            ],
            "css": [
                "content_scripts\/file_urls.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/action_enabled_16.png",
            "32": "icons\/action_enabled_32.png"
        },
        "default_popup": "pages\/action.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "pages\/vomnibar.html",
                "content_scripts\/vimium.css",
                "pages\/hud.html",
                "pages\/help_dialog.html",
                "pages\/completion_engines.html",
                "_favicon\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}