KeyboardMode

This extension allows you to open links with your Keyboard.

Was ist KeyboardMode?

KeyboardMode ist eine Chrome-Erweiterung, die von https://hanneshofer.github.io/KeyboardMode entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to open links with your Keyboard.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

KeyboardMode-Erweiterungs-CRX-Datei herunterladen

Laden Sie KeyboardMode-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

                        This extension allows you to control chrome with your keyboard.
With the alreay knows hotkeys it is already possible to control most parts of chrome (ex. Enter new URL, go back, go forward)
after pressing a certain, adjustable, hotkey this extension shows links hints (see screenshot)
when the shown characters in the link hints are pressed the relevant link will be opend.
with "meta" keys it is possible to open certain links in new tab, new window or in new incognito window.                    

Grundlegende Informationen zur Erweiterung

Name KeyboardMode KeyboardMode
ID gceomdpidnmgddihieakclncpopaiplc
Offizielle URL https://chromewebstore.google.com/detail/keyboardmode/gceomdpidnmgddihieakclncpopaiplc
Beschreibung This extension allows you to open links with your Keyboard.
Dateigröße 44.36 KB
Installationsanzahl 11
Aktuelle Version 0.1
Letztes Update 2014-08-19
Veröffentlichungsdatum 2014-08-19
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://hanneshofer.github.io/KeyboardMode
Zahlungsart free
Unterstützte Sprachen de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "default_locale": "en",
    "description": "This extension allows you to open links with your Keyboard.",
    "icons": {
        "128": "icon.png"
    },
    "version": "0.1",
    "options_page": "options.html",
    "permissions": [
        "",
        "tabs",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "lib\/background.js"
        ]
    },
    "commands": {
        "activate_link_hints": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            },
            "description": "Link Hints anzeigen"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/keyboard_utils.js",
                "lib\/dom_utils.js",
                "lib\/option_utils.js",
                "link_hints.js",
                "command.js"
            ],
            "css": [
                "keyboardmode.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}