Keyboard Controller

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

什么是Keyboard Controller?

Keyboard Controller是由BFriedrichs开发的Chrome扩展程序,该扩展的主要功能是“Adds a custom controller to the Gamepad API list that reacts to keyboard inputs.”。

扩展截图

screenshot

下载Keyboard Controller扩展crx文件

下载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
}