Keyboard Controller

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

ما هو Keyboard Controller؟

Keyboard Controller هو إضافة Chrome تم تطويرها بواسطة BFriedrichs، والميزة الرئيسية لها هي "Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Keyboard Controller

قم بتنزيل ملفات الامتداد Keyboard Controller بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Keyboard Controller Keyboard Controller
ID gejfopihcilhjkeibfhmggglpabfklhd
عنوان URL الرسمي https://chrome.google.com/webstore/detail/keyboard-controller/gejfopihcilhjkeibfhmggglpabfklhd
الوصف Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.
حجم الملف 20.84 KB
عدد التثبيتات 322
النسخة الحالية 1.0
آخر تحديث 2019-07-23
تاريخ النشر 2019-07-20
تقييم 2.00/5 مجموع تقييمات 3
المطور BFriedrichs
نوع الدفع free
موقع الإضافة https://github.com/BFriedrichs/keyboard-controller-extension
عنوان صفحة المساعدة https://github.com/BFriedrichs/keyboard-controller-extension
اللغات المدعومة 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
}