Web MIDI Mapper
Control an HTML Element with a MIDI input
什么是Web MIDI Mapper?
Web MIDI Mapper是由iAM.Lab开发的Chrome扩展程序,该扩展的主要功能是“Control an HTML Element with a MIDI input”。
扩展截图
下载Web MIDI Mapper扩展crx文件
下载Web MIDI Mapper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Web MIDI Mapper |
ID | fljflkcpgpkgiofblemmgaaccocembbm |
官方URL | https://chromewebstore.google.com/detail/web-midi-mapper/fljflkcpgpkgiofblemmgaaccocembbm |
简介 | Control an HTML Element with a MIDI input |
文件大小 | 22.4 KB |
安装次数 | 223 |
当前版本 | 1.0 |
更新时间 | 2023-04-19 |
上架时间 | 2023-03-14 |
开发者 | iAM.Lab |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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\/*" ] } ] } |