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 |
Eメール | [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\/*" ] } ] } |