KeyboardShortcuts

Add Keyboard Shortcuts to Web Applications

Was ist KeyboardShortcuts?

KeyboardShortcuts ist eine Chrome-Erweiterung, die von farleigh entwickelt wurde, und ihr Hauptmerkmal ist "Add Keyboard Shortcuts to Web Applications".

Erweiterungsscreenshots

screenshot

KeyboardShortcuts-Erweiterungs-CRX-Datei herunterladen

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

                        Add custom keyboard shortcuts (hotkeys) to specific web applications using a small flexible language. Currently supports commands including copying content into the clipboard, clicking, touching, opening new pages, focusing on elements, hiding elements on the page and setting content.                    

Grundlegende Informationen zur Erweiterung

Name KeyboardShortcuts KeyboardShortcuts
ID oiigclempgcopbccpbibeembdmbenpce
Offizielle URL https://chrome.google.com/webstore/detail/keyboardshortcuts/oiigclempgcopbccpbibeembdmbenpce
Beschreibung Add Keyboard Shortcuts to Web Applications
Dateigröße 498 KB
Installationsanzahl 76
Aktuelle Version 1.0.0
Letztes Update 2016-04-24
Veröffentlichungsdatum 2016-04-24
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler farleigh
Zahlungsart free
Erweiterungswebsite https://github.com/farleigh/keyboardshortcuts/wiki
Hilfeseite URL https://github.com/farleigh/keyboardshortcuts/wiki
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "KeyboardShortcuts",
    "version": "1.0.0",
    "description": "Add Keyboard Shortcuts to Web Applications",
    "homepage_url": "https:\/\/github.com\/farleigh\/keyboardshortcuts\/wiki",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/3p\/almond-min.js",
                "js\/3p\/jquery.js",
                "js\/3p\/mousetrap.js",
                "js\/keyboard-shortcuts-bundle.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "clipboardWrite",
        "downloads"
    ],
    "browser_action": {
        "default_icon": "images\/favicon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "32": "images\/favicon.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}