Remote Control Key Simulator

Generate key events for keys you don't got

Cos'è Remote Control Key Simulator?

Remote Control Key Simulator è un'estensione di Chrome sviluppata da https://www.frisnit.com, e la sua funzione principale è "Generate key events for keys you don't got".

Scarica il file CRX dell'estensione Remote Control Key Simulator

Scarica i file di estensione Remote Control Key Simulator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Remote Control Key Simulator Remote Control Key Simulator
ID pojpkoooooliacdjjhlcolpaaeljomof
URL Ufficiale https://chromewebstore.google.com/detail/remote-control-key-simula/pojpkoooooliacdjjhlcolpaaeljomof
Descrizione Generate key events for keys you don't got
Dimensione del File 72.84 KB
Conteggio Installazioni 74
Versione Corrente 0.2
Ultimo Aggiornamento 2017-05-26
Data di Pubblicazione 2017-05-26
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://www.frisnit.com
Tipo di Pagamento free
Lingue Supportate 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"
    }
}