KeyMap

Learn keyboard shortcuts to improve your productivity.

Was ist KeyMap?

KeyMap ist eine Chrome-Erweiterung, die von http://blainelewis.ca entwickelt wurde, und ihr Hauptmerkmal ist "Learn keyboard shortcuts to improve your productivity.".

Erweiterungsscreenshots

screenshot
screenshot

KeyMap-Erweiterungs-CRX-Datei herunterladen

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

                        KeyMap is a visualization to help learn new keyboard shortcuts. It supports websites such as Overleaf, Slack, and basic Google Chrome commands. It works by displaying a virtual keyboard in the bottom left, and upon pressing and holding a modifier key like cmd or ctrl, displays all of the available keyboard shortcuts.                    

Grundlegende Informationen zur Erweiterung

Name KeyMap KeyMap
ID fpminkfnndfokkmoobbngdpnijbcajkl
Offizielle URL https://chrome.google.com/webstore/detail/keymap/fpminkfnndfokkmoobbngdpnijbcajkl
Beschreibung Learn keyboard shortcuts to improve your productivity.
Dateigröße 518 KB
Installationsanzahl 164
Aktuelle Version 1.1
Letztes Update 2020-04-30
Veröffentlichungsdatum 2020-04-30
Bewertung 2.00/5 Insgesamt 1 Bewertungen
Entwickler http://blainelewis.ca
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "KeyMap",
    "version": "1.1",
    "description": "Learn keyboard shortcuts to improve your productivity.",
    "manifest_version": 2,
    "homepage_url": "http:\/\/blainelewis.ca\/KeyMap",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.overleaf.com\/*",
                "*:\/\/app.slack.com\/*",
                "*:\/\/dynalist.io\/*"
            ],
            "css": [
                "\/static\/css\/main.chunk.css"
            ],
            "js": [
                "\/static\/js\/0.chunk.js",
                "\/static\/js\/main.chunk.js",
                "\/static\/js\/runtime-main.js"
            ]
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage",
        "activeTab",
        "*:\/\/www.overleaf.com\/*",
        "*:\/\/app.slack.com\/*",
        "*:\/\/dynalist.io\/*"
    ],
    "icons": {
        "128": "iconalpha.png"
    }
}