Web MIDI Mapper
Control an HTML Element with a MIDI input
Hvad er Web MIDI Mapper?
Web MIDI Mapper er en Chrome-udvidelse udviklet af iAM.Lab, og dens hovedfunktion er "Control an HTML Element with a MIDI input".
Udvidelsesskærmbilleder
Download Web MIDI Mapper-udvidelses-CRX-fil
Download Web MIDI Mapper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Web MIDI Mapper |
ID | fljflkcpgpkgiofblemmgaaccocembbm |
Officiel URL | https://chromewebstore.google.com/detail/web-midi-mapper/fljflkcpgpkgiofblemmgaaccocembbm |
Beskrivelse | Control an HTML Element with a MIDI input |
Filstørrelse | 22.4 KB |
Antal Installationer | 223 |
Nuværende Version | 1.0 |
Senest Opdateret | 2023-04-19 |
Udgivelsesdato | 2023-03-14 |
Udvikler | iAM.Lab |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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\/*" ] } ] } |