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
}