Keyboard Controller

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

Co to jest Keyboard Controller?

Keyboard Controller to rozszerzenie Chrome opracowane przez BFriedrichs, a jego główną funkcją jest „Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Keyboard Controller

Pobierz pliki rozszerzeń Keyboard Controller w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Keyboard Controller Keyboard Controller
ID gejfopihcilhjkeibfhmggglpabfklhd
Oficjalny URL https://chrome.google.com/webstore/detail/keyboard-controller/gejfopihcilhjkeibfhmggglpabfklhd
Opis Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.
Rozmiar pliku 20.84 KB
Liczba instalacji 322
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-07-23
Data Publikacji 2019-07-20
Ocena 2.00/5 Łącznie 3 Oceny
Deweloper BFriedrichs
Typ Płatności free
Strona Rozszerzenia https://github.com/BFriedrichs/keyboard-controller-extension
Adres URL Strony Pomocy https://github.com/BFriedrichs/keyboard-controller-extension
Obsługiwane Języki 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
}