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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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
}