Keyboard Controller

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

Apa itu Keyboard Controller?

Keyboard Controller adalah ekstensi Chrome yang dikembangkan oleh BFriedrichs, dan fitur utamanya adalah "Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Keyboard Controller

Unduh file ekstensi Keyboard Controller dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Keyboard Controller Keyboard Controller
ID gejfopihcilhjkeibfhmggglpabfklhd
URL Resmi https://chrome.google.com/webstore/detail/keyboard-controller/gejfopihcilhjkeibfhmggglpabfklhd
Deskripsi Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.
Ukuran File 20.84 KB
Jumlah Instalasi 322
Versi Saat Ini 1.0
Terakhir Diperbarui 2019-07-23
Tanggal Publikasi 2019-07-20
Penilaian 2.00/5 Total 3 Penilaian
Pengembang BFriedrichs
Tipe Pembayaran free
Situs Ekstensi https://github.com/BFriedrichs/keyboard-controller-extension
URL Halaman Bantuan https://github.com/BFriedrichs/keyboard-controller-extension
Bahasa yang Didukung 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
}