Keyboard Controller

Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.

Cos'è Keyboard Controller?

Keyboard Controller è un'estensione di Chrome sviluppata da BFriedrichs, e la sua funzione principale è "Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Keyboard Controller

Scarica i file di estensione Keyboard Controller 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

                        The Gamepad API does not react to keyboard inputs. This extension hacks a binding into the getGamepads() function so that you can use the keyboard for testing.                    

Informazioni di Base sull'Estensione

Nome Keyboard Controller Keyboard Controller
ID gejfopihcilhjkeibfhmggglpabfklhd
URL Ufficiale https://chrome.google.com/webstore/detail/keyboard-controller/gejfopihcilhjkeibfhmggglpabfklhd
Descrizione Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.
Dimensione del File 20.84 KB
Conteggio Installazioni 322
Versione Corrente 1.0
Ultimo Aggiornamento 2019-07-23
Data di Pubblicazione 2019-07-20
Valutazione 2.00/5 Totale 3 Valutazioni
Sviluppatore BFriedrichs
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/BFriedrichs/keyboard-controller-extension
URL della Pagina di Aiuto https://github.com/BFriedrichs/keyboard-controller-extension
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyboard Controller",
    "version": "1.0",
    "description": "Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "hook.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png",
        "16": "images\/icon16.png"
    },
    "options_page": "options.html",
    "manifest_version": 2
}