KeyboardShortcuts

Add Keyboard Shortcuts to Web Applications

Hvad er KeyboardShortcuts?

KeyboardShortcuts er en Chrome-udvidelse udviklet af farleigh, og dens hovedfunktion er "Add Keyboard Shortcuts to Web Applications".

Udvidelsesskærmbilleder

screenshot

Download KeyboardShortcuts-udvidelses-CRX-fil

Download KeyboardShortcuts-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

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn KeyboardShortcuts KeyboardShortcuts
ID oiigclempgcopbccpbibeembdmbenpce
Officiel URL https://chrome.google.com/webstore/detail/keyboardshortcuts/oiigclempgcopbccpbibeembdmbenpce
Beskrivelse Add Keyboard Shortcuts to Web Applications
Filstørrelse 498 KB
Antal Installationer 76
Nuværende Version 1.0.0
Senest Opdateret 2016-04-24
Udgivelsesdato 2016-04-24
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler farleigh
Betalingsmetode free
Udvidelseswebsted https://github.com/farleigh/keyboardshortcuts/wiki
Hjælpeside-URL https://github.com/farleigh/keyboardshortcuts/wiki
Understøttede Sprog 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
}