Web MIDI Mapper
Control an HTML Element with a MIDI input
Что такое Web MIDI Mapper?
Web MIDI Mapper - это расширение Chrome, разработанное iAM.Lab, и его основная функция - "Control an HTML Element with a MIDI input".
Снимки экрана расширения
Скачать файл CRX расширения Web MIDI Mapper
Скачайте файлы расширений 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\/*" ] } ] } |