Web MIDI Mapper
Control an HTML Element with a MIDI input
¿Qué es Web MIDI Mapper?
Web MIDI Mapper es una extensión de Chrome desarrollada por iAM.Lab, y su función principal es "Control an HTML Element with a MIDI input".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Web MIDI Mapper
Descarga archivos de extensión Web MIDI Mapper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Web MIDI Mapper |
ID | fljflkcpgpkgiofblemmgaaccocembbm |
URL Oficial | https://chromewebstore.google.com/detail/web-midi-mapper/fljflkcpgpkgiofblemmgaaccocembbm |
Descripción | Control an HTML Element with a MIDI input |
Tamaño del Archivo | 22.4 KB |
Cantidad de Instalaciones | 223 |
Versión Actual | 1.0 |
Última Actualización | 2023-04-19 |
Fecha de Publicación | 2023-03-14 |
Desarrollador | iAM.Lab |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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\/*" ] } ] } |