Remote Control Key Simulator

Generate key events for keys you don't got

Was ist Remote Control Key Simulator?

Remote Control Key Simulator ist eine Chrome-Erweiterung, die von https://www.frisnit.com entwickelt wurde, und ihr Hauptmerkmal ist "Generate key events for keys you don't got".

Remote Control Key Simulator-Erweiterungs-CRX-Datei herunterladen

Laden Sie Remote Control Key Simulator-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

                        Gives you the buttons your keyboard doesn't support, for testing web apps for set top boxes, smart TVs etc.

Currently supports:

- Playstation
- Amazon Fire
- YouView                    

Grundlegende Informationen zur Erweiterung

Name Remote Control Key Simulator Remote Control Key Simulator
ID pojpkoooooliacdjjhlcolpaaeljomof
Offizielle URL https://chromewebstore.google.com/detail/remote-control-key-simula/pojpkoooooliacdjjhlcolpaaeljomof
Beschreibung Generate key events for keys you don't got
Dateigröße 72.84 KB
Installationsanzahl 74
Aktuelle Version 0.2
Letztes Update 2017-05-26
Veröffentlichungsdatum 2017-05-26
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://www.frisnit.com
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remote Control Key Simulator",
    "description": "Generate key events for keys you don't got",
    "version": "0.2",
    "page_action": {
        "default_icon": {
            "16": "icon16.png",
            "19": "icon19.png",
            "38": "icon38.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Remote Control Key Simulator",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "declarativeContent",
        "tabs",
        "https:\/\/*.channel4.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.channel4.com\/*"
            ],
            "js": [
                "timer.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "38": "icon38.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png",
        "512": "icon512.png"
    }
}