Web MIDI Mapper

Control an HTML Element with a MIDI input

Was ist Web MIDI Mapper?

Web MIDI Mapper ist eine Chrome-Erweiterung, die von iAM.Lab entwickelt wurde, und ihr Hauptmerkmal ist "Control an HTML Element with a MIDI input".

Erweiterungsscreenshots

screenshot

Web MIDI Mapper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Web MIDI Mapper-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Web MIDI Mapper Web MIDI Mapper
ID fljflkcpgpkgiofblemmgaaccocembbm
Offizielle URL https://chromewebstore.google.com/detail/web-midi-mapper/fljflkcpgpkgiofblemmgaaccocembbm
Beschreibung Control an HTML Element with a MIDI input
Dateigröße 22.4 KB
Installationsanzahl 223
Aktuelle Version 1.0
Letztes Update 2023-04-19
Veröffentlichungsdatum 2023-03-14
Entwickler iAM.Lab
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}