Keyboard Navigation

Keyboard based link navigation like Conkeror

Hvad er Keyboard Navigation?

Keyboard Navigation er en Chrome-udvidelse udviklet af https://flurp.de, og dens hovedfunktion er "Keyboard based link navigation like Conkeror".

Udvidelsesskærmbilleder

screenshot

Download Keyboard Navigation-udvidelses-CRX-fil

Download Keyboard Navigation-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Keyboard Navigation Keyboard Navigation
ID pbeglgibmimhhoddioagekdgljpdekdg
Officiel URL https://chromewebstore.google.com/detail/keyboard-navigation/pbeglgibmimhhoddioagekdgljpdekdg
Beskrivelse Keyboard based link navigation like Conkeror
Filstørrelse 38.63 KB
Antal Installationer 38
Nuværende Version 1.0
Senest Opdateret 2016-09-04
Udgivelsesdato 2016-09-04
Bedømmelse 4.00/5 Samlet 1 Bedømmelser
Udvikler https://flurp.de
Betalingsmetode free
Udvidelseswebsted https://github.com/dermatthias/keyboardnav
Hjælpeside-URL https://github.com/dermatthias/keyboardnav/issues
Understøttede Sprog 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"
        }
    }
}