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
公式URL 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
Eメール [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"
            ]
        }
    ]
}