Keyboard Controller

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

Hvad er Keyboard Controller?

Keyboard Controller er en Chrome-udvidelse udviklet af BFriedrichs, og dens hovedfunktion er "Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.".

Udvidelsesskærmbilleder

screenshot

Download Keyboard Controller-udvidelses-CRX-fil

Download Keyboard Controller-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Keyboard Controller Keyboard Controller
ID gejfopihcilhjkeibfhmggglpabfklhd
Officiel URL https://chrome.google.com/webstore/detail/keyboard-controller/gejfopihcilhjkeibfhmggglpabfklhd
Beskrivelse Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.
Filstørrelse 20.84 KB
Antal Installationer 322
Nuværende Version 1.0
Senest Opdateret 2019-07-23
Udgivelsesdato 2019-07-20
Bedømmelse 2.00/5 Samlet 3 Bedømmelser
Udvikler BFriedrichs
Betalingsmetode free
Udvidelseswebsted https://github.com/BFriedrichs/keyboard-controller-extension
Hjælpeside-URL https://github.com/BFriedrichs/keyboard-controller-extension
Understøttede Sprog 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
}