Web MIDI Mapper

Control an HTML Element with a MIDI input

Co je Web MIDI Mapper?

Web MIDI Mapper je rozšíření Chrome vyvinuté iAM.Lab, a jeho hlavní funkcí je „Control an HTML Element with a MIDI input“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Web MIDI Mapper

Stáhněte si soubory rozšíření Web MIDI Mapper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Web MIDI Mapper Web MIDI Mapper
ID fljflkcpgpkgiofblemmgaaccocembbm
Oficiální URL https://chromewebstore.google.com/detail/web-midi-mapper/fljflkcpgpkgiofblemmgaaccocembbm
Popis Control an HTML Element with a MIDI input
Velikost souboru 22.4 KB
Počet instalací 223
Aktuální Verze 1.0
Poslední Aktualizace 2023-04-19
Datum Vydání 2023-03-14
Vývojář iAM.Lab
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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\/*"
            ]
        }
    ]
}