Key Jump keyboard navigation

Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.

Key Jump keyboard navigationとは何ですか?

Key Jump keyboard navigationはKenneth Sundqvistによって開発されたChromeの拡張機能で、その主な機能は「Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Key Jump keyboard navigation拡張機能のCRXファイルをダウンロード

Key Jump keyboard navigation拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Press , (comma) on your keyboard to show hints for all links, buttons, text fields and other things you can click or focus.

Press . (period) instead to open links in new tabs when they are clicked.

These shortcuts can be changed in the extension options.

Hints will be automatically triggered when possible. You can disable this in the extension options.

Press Escape to hide the hints.

If you find any bugs or have suggestions please submit a new issue here:
https://github.com/KennethSundqvist/key-jump-chrome-extension/issues                    

拡張機能の基本情報

名前 Key Jump keyboard navigation Key Jump keyboard navigation
ID afdjhbmagopjlalgcjfclkgobaafamck
公式URL https://chromewebstore.google.com/detail/key-jump-keyboard-navigat/afdjhbmagopjlalgcjfclkgobaafamck
説明 Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.
ファイルサイズ 18.8 KB
インストール数 1,531
現在のバージョン 5.4.0
最終更新日 2021-12-29
公開日 2019-12-28
評価 4.57/5 合計 21 レビュー
開発者 Kenneth Sundqvist
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/KennethSundqvist/key-jump-chrome-extension/
ヘルプページのURL https://github.com/KennethSundqvist/key-jump-chrome-extension/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Key Jump keyboard navigation",
    "description": "Hit-a-Hint style keyboard navigation. No mouse needed to click on links and stuff.",
    "version": "5.4.0",
    "author": "Kenneth Sundqvist ",
    "homepage_url": "https:\/\/github.com\/KennethSundqvist\/key-jump-browser-extension",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "all_frames": false,
            "run_at": "document_start",
            "js": [
                "bootstrap-state.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}