Joy-Con keymap
Key mapping tool for Nintendo Switch Joy-Con.
What is Joy-Con keymap?
Joy-Con keymap is a Chrome extension developed by tanabee, and its main feature is "Key mapping tool for Nintendo Switch Joy-Con.".
Extension Screenshots
Download Joy-Con keymap Extension CRX File
Download Joy-Con keymap extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Joy-Con keymap |
ID | gpclcaagdaghemankppndignpffeaccb |
Official URL | https://chromewebstore.google.com/detail/joy-con-keymap/gpclcaagdaghemankppndignpffeaccb |
Description | Key mapping tool for Nintendo Switch Joy-Con. |
File Size | 11.46 KB |
Installation Count | 232 |
Current Version | 0.1.2 |
Last Updated | 2022-07-07 |
Publish Date | 2022-05-24 |
Rating | 4.33/5 Total 3 Ratings |
Developer | tanabee |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/tanabee/joy-con-keymap |
Help Page URL | https://github.com/tanabee/joy-con-keymap/issues |
Supported Languages | 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" } } |