Gamepad to Keyboard Mapper

Map gamepad buttons and axes to keyboard keys

Gamepad to Keyboard Mapper क्या है?

Gamepad to Keyboard Mapper james द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Map gamepad buttons and axes to keyboard keys"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Gamepad to Keyboard Mapper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}