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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } ] } |