Keyboard Navigation

Keyboard based link navigation like Conkeror

Wat is Keyboard Navigation?

Keyboard Navigation is een Chrome-extensie ontwikkeld door https://flurp.de, en de belangrijkste functie is "Keyboard based link navigation like Conkeror".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Keyboard Navigation

Download Keyboard Navigation-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Keyboard Navigation Keyboard Navigation
ID pbeglgibmimhhoddioagekdgljpdekdg
Officiële URL https://chromewebstore.google.com/detail/keyboard-navigation/pbeglgibmimhhoddioagekdgljpdekdg
Beschrijving Keyboard based link navigation like Conkeror
Bestandsgrootte 38.63 KB
Aantal Installaties 38
Huidige Versie 1.0
Laatst Bijgewerkt 2016-09-04
Publicatiedatum 2016-09-04
Beoordeling 4.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://flurp.de
Betalingswijze free
Extensiewebsite https://github.com/dermatthias/keyboardnav
Help Pagina-URL https://github.com/dermatthias/keyboardnav/issues
Ondersteunde Talen 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"
        }
    }
}