knavi

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

O que é knavi?

knavi é uma extensão do Chrome desenvolvida por k_ui, e sua principal característica é "Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão knavi

Baixe arquivos de extensão knavi no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome knavi knavi
ID pfcgnkljgjobpkbgcifmpnhglafhkifg
URL Oficial https://chromewebstore.google.com/detail/knavi/pfcgnkljgjobpkbgcifmpnhglafhkifg
Descrição Hit-a-Hint with magic key. You can click without the mouse by holding down the space key and hint text.
Tamanho do Arquivo 255 KB
Contagem de Instalações 282
Versão Atual 3.2.0
Última Atualização 2023-12-16
Data de Publicação 2020-02-18
Classificação 4.54/5 Total de 24 Avaliações
Desenvolvedor k_ui
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/kui/knavi
URL da Página de Ajuda https://github.com/kui/knavi/issues
Idiomas Suportados 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"
            ]
        }
    ]
}