Keyboard Controller

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

Qu'est-ce que Keyboard Controller ?

Keyboard Controller est une extension Chrome développée par BFriedrichs, et sa fonction principale est "Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Keyboard Controller

Téléchargez les fichiers d'extension Keyboard Controller au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Keyboard Controller Keyboard Controller
ID gejfopihcilhjkeibfhmggglpabfklhd
URL Officiel https://chrome.google.com/webstore/detail/keyboard-controller/gejfopihcilhjkeibfhmggglpabfklhd
Description Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.
Taille du Fichier 20.84 KB
Nombre d'Installations 322
Version Actuelle 1.0
Dernière Mise à Jour 2019-07-23
Date de Publication 2019-07-20
Évaluation 2.00/5 Total 3 Évaluations
Développeur BFriedrichs
Type de Paiement free
Site Web de l'Extension https://github.com/BFriedrichs/keyboard-controller-extension
URL de la Page d'Aide https://github.com/BFriedrichs/keyboard-controller-extension
Langues Prises en Charge 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
}