Keyboard Navigation

Keyboard based link navigation like Conkeror

Was ist Keyboard Navigation?

Keyboard Navigation ist eine Chrome-Erweiterung, die von https://flurp.de entwickelt wurde, und ihr Hauptmerkmal ist "Keyboard based link navigation like Conkeror".

Erweiterungsscreenshots

screenshot

Keyboard Navigation-Erweiterungs-CRX-Datei herunterladen

Laden Sie Keyboard Navigation-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Keyboard Navigation Keyboard Navigation
ID pbeglgibmimhhoddioagekdgljpdekdg
Offizielle URL https://chromewebstore.google.com/detail/keyboard-navigation/pbeglgibmimhhoddioagekdgljpdekdg
Beschreibung Keyboard based link navigation like Conkeror
Dateigröße 38.63 KB
Installationsanzahl 38
Aktuelle Version 1.0
Letztes Update 2016-09-04
Veröffentlichungsdatum 2016-09-04
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler https://flurp.de
Zahlungsart free
Erweiterungswebsite https://github.com/dermatthias/keyboardnav
Hilfeseite URL https://github.com/dermatthias/keyboardnav/issues
Unterstützte Sprachen 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"
        }
    }
}