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
官方網址 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
}