knavi

Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.

knavi là gì?

knavi là một tiện ích mở rộng Chrome được phát triển bởi k_ui, và tính năng chính của nó là "Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng knavi 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 is for clicking links and buttons with keyboard only. Pressing space key and hint key simulates clicking links and buttons.

By releasing space key with modifier keys such as `Ctrl` or `Alt`, you can open links in new tab or new window.

The default magic key is space key, but you can change it in options.                    

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

Tên knavi knavi
ID pfcgnkljgjobpkbgcifmpnhglafhkifg
URL Chính Thức https://chromewebstore.google.com/detail/knavi/pfcgnkljgjobpkbgcifmpnhglafhkifg
Mô tả Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.
Kích Thước Tệp 255 KB
Số Lần Cài Đặt 282
Phiên Bản Hiện Tại 3.2.0
Cập Nhật Lần Cuối 2023-12-16
Ngày Phát Hành 2020-02-18
Đánh Giá 4.54/5 Tổng số 24 Đánh Giá
Nhà Phát Triển k_ui
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kui/knavi
URL Trang Trợ Giúp https://github.com/kui/knavi/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "knavi",
    "version": "3.2.0",
    "description": "Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.",
    "author": "Keiichiro Ui",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-all.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "content-root.js"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "*.js.map"
            ]
        }
    ]
}