Vimkey

Use keyboard control browser jump, scroll, switch tab and more

Vimkey là gì?

Vimkey là một tiện ích mở rộng Chrome được phát triển bởi Haojen, và tính năng chính của nó là "Use keyboard control browser jump, scroll, switch tab and more".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        You can use the Keyboard control browser,  reduced switching between mouse                    

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

Tên Vimkey Vimkey
ID eeeandejdamjifbgmmmmonggidbccnnj
URL Chính Thức https://chromewebstore.google.com/detail/vimkey/eeeandejdamjifbgmmmmonggidbccnnj
Mô tả Use keyboard control browser jump, scroll, switch tab and more
Kích Thước Tệp 1.77 MB
Số Lần Cài Đặt 201
Phiên Bản Hiện Tại 2.8.0
Cập Nhật Lần Cuối 2022-12-02
Ngày Phát Hành 2021-10-19
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Haojen
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://haojen.github.io/vimkey
URL Trang Trợ Giúp https://haojen.github.io/vimkey/#/support
Ngôn Ngữ Được Hỗ Trợ en,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "2.8.0",
    "icons": {
        "48": "images\/icon-48.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png",
        "512": "images\/icon-512.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": false,
            "js": [
                "content.entry.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        },
        {
            "run_at": "document_end",
            "all_frames": false,
            "js": [
                "webcomponents-bundle.js",
                "content.view.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "content.inject.js",
        "images\/icon-64.png",
        "images\/icon-128.png",
        "images\/toolbar-icon-76.png",
        "images\/en-us-keyboard-layout.png"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/toolbar-icon-16.png",
            "19": "images\/toolbar-icon-19.png",
            "32": "images\/toolbar-icon-32.png",
            "38": "images\/toolbar-icon-38.png"
        }
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "clipboardRead",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}