Keyboard Navigation

Keyboard based link navigation like Conkeror

What is Keyboard Navigation?

Keyboard Navigation is a Chrome extension developed by https://flurp.de, and its main feature is "Keyboard based link navigation like Conkeror".

Extension Screenshots

screenshot

Download Keyboard Navigation Extension CRX File

Download Keyboard Navigation extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Follow links on page just with a few key strokes. No mouse interaction needed.

Especially useful for people who are typing a lot and don't want to switch one hand off the keyboard to the mouse. 

Inspired by the same functions in Conkeror, a keyboard based browser.                    

Extension Basic Information

Name Keyboard Navigation Keyboard Navigation
ID pbeglgibmimhhoddioagekdgljpdekdg
Official URL https://chromewebstore.google.com/detail/keyboard-navigation/pbeglgibmimhhoddioagekdgljpdekdg
Description Keyboard based link navigation like Conkeror
File Size 38.63 KB
Installation Count 38
Current Version 1.0
Last Updated 2016-09-04
Publish Date 2016-09-04
Rating 4.00/5 Total 1 Ratings
Developer https://flurp.de
Payment Type free
Extension Website https://github.com/dermatthias/keyboardnav
Help Page URL https://github.com/dermatthias/keyboardnav/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Keyboard Navigation",
    "short_name": "keyboardnav",
    "description": "Keyboard based link navigation like Conkeror",
    "homepage_url": "https:\/\/github.com\/dermatthias\/keyboardnav",
    "version": "1.0",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "contentscript.js"
            ]
        }
    ],
    "commands": {
        "highlight-links": {
            "suggested_key": {
                "default": "Ctrl+Space"
            },
            "description": "Highlight links on a webpage"
        }
    }
}