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
}