Gamepad to Keyboard Mapper

Map gamepad buttons and axes to keyboard keys

Что такое Gamepad to Keyboard Mapper?

Gamepad to Keyboard Mapper - это расширение Chrome, разработанное james, и его основная функция - "Map gamepad buttons and axes to keyboard keys".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Gamepad to Keyboard Mapper

Скачайте файлы расширений Gamepad to Keyboard Mapper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Gamepad to Keyboard Mapper will allow you to map Gamepad buttons and axes to keyboard buttons. It opens the door for using a game controller or joypad for online games that only have keyboard support. This has been tested and works with Chrome OS.

Simply click the extension icon, and then add, delete, or edit mappings. Gamepad buttons go on the left, and keyboard keys on the right. When you are entering a gamepad button number, just press the button on your controller. When you are entering a key, just press the key on your keyboard.

Note: When visiting a page, you must first press a button to activate the gamepad API. Keep this in mind - your first button press on a page or while adding mappings will not be registered.                    

Основная информация о расширении

Название Gamepad to Keyboard Mapper Gamepad to Keyboard Mapper
ID apfnclocagjfbgefniagcgigcfgcocaj
Официальный URL https://chromewebstore.google.com/detail/gamepad-to-keyboard-mappe/apfnclocagjfbgefniagcgigcfgcocaj
Описание Map gamepad buttons and axes to keyboard keys
Размер файла 17.13 KB
Количество установок 4,566
Текущая Версия 1.0.1
Последнее Обновление 2024-01-04
Дата публикации 2021-06-12
Рейтинг 2.94/5 Всего 16 оценок
Разработчик james
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/jamesgrams/gamepad-to-keyboard-mapper
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gamepad to Keyboard Mapper",
    "version": "1.0.1",
    "manifest_version": 3,
    "description": "Map gamepad buttons and axes to keyboard keys",
    "homepage_url": "https:\/\/game103.net",
    "action": {
        "default_title": "Gamepad to Keyboard Mapper",
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "storage",
        "debugger"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon32.png",
        "138": "icon128.png"
    }
}