Gamepad to Keyboard Mapper

Map gamepad buttons and axes to keyboard keys

Gamepad to Keyboard Mapper란 무엇입니까?

Gamepad to Keyboard Mapper은(는) james에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Map gamepad buttons and axes to keyboard keys"입니다.

확장 프로그램 스크린샷

screenshot

Gamepad to Keyboard Mapper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}