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”。
擴展截圖
下載Gamepad to Keyboard Mapper擴展crx文件
下載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 |
ID | apfnclocagjfbgefniagcgigcfgcocaj |
官方網址 | 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" } } |