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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
            ]
        }
    ]
}