Joy-Con keymap
Key mapping tool for Nintendo Switch Joy-Con.
Was ist Joy-Con keymap?
Joy-Con keymap ist eine Chrome-Erweiterung, die von tanabee entwickelt wurde, und ihr Hauptmerkmal ist "Key mapping tool for Nintendo Switch Joy-Con.".
Erweiterungsscreenshots
Joy-Con keymap-Erweiterungs-CRX-Datei herunterladen
Laden Sie Joy-Con keymap-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Key mapping tool for Nintendo Switch Joy-Con. This extension can fire any keyboard event when a Joy-Con button or stick operation is occurred. Currently only the Joy-Con Left Controller is supported.
Grundlegende Informationen zur Erweiterung
Name | Joy-Con keymap |
ID | gpclcaagdaghemankppndignpffeaccb |
Offizielle URL | https://chromewebstore.google.com/detail/joy-con-keymap/gpclcaagdaghemankppndignpffeaccb |
Beschreibung | Key mapping tool for Nintendo Switch Joy-Con. |
Dateigröße | 11.46 KB |
Installationsanzahl | 232 |
Aktuelle Version | 0.1.2 |
Letztes Update | 2022-07-07 |
Veröffentlichungsdatum | 2022-05-24 |
Bewertung | 4.33/5 Insgesamt 3 Bewertungen |
Entwickler | tanabee |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/tanabee/joy-con-keymap |
Hilfeseite URL | https://github.com/tanabee/joy-con-keymap/issues |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Joy-Con keymap", "description": "Key mapping tool for Nintendo Switch Joy-Con.", "version": "0.1.2", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content-script.js" ] } ], "permissions": [ "storage" ], "options_page": "options.html", "action": { "default_icon": { "16": "\/images\/icon-16.png", "32": "\/images\/icon-32.png", "48": "\/images\/icon-48.png", "128": "\/images\/icon-128.png" } }, "icons": { "16": "\/images\/icon-16.png", "32": "\/images\/icon-32.png", "48": "\/images\/icon-48.png", "128": "\/images\/icon-128.png" } } |