knavi

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

什麼是knavi?

knavi是由k_ui開發的Chrome擴展程式,該擴展的主要功能是“Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.”。

擴展截圖

screenshot
screenshot

下載knavi擴展crx文件

下載knavi擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 knavi knavi
ID pfcgnkljgjobpkbgcifmpnhglafhkifg
官方網址 https://chromewebstore.google.com/detail/knavi/pfcgnkljgjobpkbgcifmpnhglafhkifg
簡介 Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.
檔案大小 255 KB
安裝次數 282
目前版本 3.2.0
更新時間 2023-12-16
上架時間 2020-02-18
評分 4.54/5 共 24 次評分
開發者 k_ui
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/kui/knavi
說明頁面URL https://github.com/kui/knavi/issues
支援的語言 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"
            ]
        }
    ]
}