Keyboard Controller

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

Wat is Keyboard Controller?

Keyboard Controller is een Chrome-extensie ontwikkeld door BFriedrichs, en de belangrijkste functie is "Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Keyboard Controller

Download Keyboard Controller-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Keyboard Controller Keyboard Controller
ID gejfopihcilhjkeibfhmggglpabfklhd
Officiële URL https://chrome.google.com/webstore/detail/keyboard-controller/gejfopihcilhjkeibfhmggglpabfklhd
Beschrijving Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.
Bestandsgrootte 20.84 KB
Aantal Installaties 322
Huidige Versie 1.0
Laatst Bijgewerkt 2019-07-23
Publicatiedatum 2019-07-20
Beoordeling 2.00/5 Totaal 3 Beoordelingen
Ontwikkelaar BFriedrichs
Betalingswijze free
Extensiewebsite https://github.com/BFriedrichs/keyboard-controller-extension
Help Pagina-URL https://github.com/BFriedrichs/keyboard-controller-extension
Ondersteunde Talen 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
}