Keyboard Controller

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

Keyboard Controller là gì?

Keyboard Controller là một tiện ích mở rộng Chrome được phát triển bởi BFriedrichs, và tính năng chính của nó là "Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Keyboard Controller

Tải xuống các tệp mở rộng Keyboard Controller dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Keyboard Controller Keyboard Controller
ID gejfopihcilhjkeibfhmggglpabfklhd
URL Chính Thức https://chrome.google.com/webstore/detail/keyboard-controller/gejfopihcilhjkeibfhmggglpabfklhd
Mô tả Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.
Kích Thước Tệp 20.84 KB
Số Lần Cài Đặt 322
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-07-23
Ngày Phát Hành 2019-07-20
Đánh Giá 2.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển BFriedrichs
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/BFriedrichs/keyboard-controller-extension
URL Trang Trợ Giúp https://github.com/BFriedrichs/keyboard-controller-extension
Ngôn Ngữ Được Hỗ Trợ 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
}