Web MIDI Mapper

Control an HTML Element with a MIDI input

What is Web MIDI Mapper?

Web MIDI Mapper is a Chrome extension developed by iAM.Lab, and its main feature is "Control an HTML Element with a MIDI input".

Extension Screenshots

screenshot

Download Web MIDI Mapper Extension CRX File

Download Web MIDI Mapper 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

                        Web MIDI Mapper allows you to map a MIDI input to an element on a website. You can then use the MIDI input to click said element without having to focus the tab or browser. It was originally developed to be able to control the play button of a tutorial video without having to switch focus.                    

Extension Basic Information

Name Web MIDI Mapper Web MIDI Mapper
ID fljflkcpgpkgiofblemmgaaccocembbm
Official URL https://chromewebstore.google.com/detail/web-midi-mapper/fljflkcpgpkgiofblemmgaaccocembbm
Description Control an HTML Element with a MIDI input
File Size 22.4 KB
Installation Count 223
Current Version 1.0
Last Updated 2023-04-19
Publish Date 2023-03-14
Developer iAM.Lab
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Web MIDI Mapper",
    "version": "1.0",
    "description": "Control an HTML Element with a MIDI input",
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "16": "icons\/WebMidiMapperLogo16.png",
        "32": "icons\/WebMidiMapperLogo32.png",
        "64": "icons\/WebMidiMapperLogo64.png",
        "128": "icons\/WebMidiMapperLogo128.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "*:\/\/localhost\/*"
            ]
        }
    ]
}