Gamepad to Keyboard Mapper

Map gamepad buttons and axes to keyboard keys

¿Qué es Gamepad to Keyboard Mapper?

Gamepad to Keyboard Mapper es una extensión de Chrome desarrollada por james, y su función principal es "Map gamepad buttons and axes to keyboard keys".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Gamepad to Keyboard Mapper

Descarga archivos de extensión Gamepad to Keyboard Mapper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Gamepad to Keyboard Mapper Gamepad to Keyboard Mapper
ID apfnclocagjfbgefniagcgigcfgcocaj
URL Oficial https://chromewebstore.google.com/detail/gamepad-to-keyboard-mappe/apfnclocagjfbgefniagcgigcfgcocaj
Descripción Map gamepad buttons and axes to keyboard keys
Tamaño del Archivo 17.13 KB
Cantidad de Instalaciones 4,566
Versión Actual 1.0.1
Última Actualización 2024-01-04
Fecha de Publicación 2021-06-12
Calificación 2.94/5 Total de 16 Calificaciones
Desarrollador james
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/jamesgrams/gamepad-to-keyboard-mapper
Idiomas Soportados 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"
    }
}