Web MIDI Mapper

Control an HTML Element with a MIDI input

Apa itu Web MIDI Mapper?

Web MIDI Mapper adalah ekstensi Chrome yang dikembangkan oleh iAM.Lab, dan fitur utamanya adalah "Control an HTML Element with a MIDI input".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Web MIDI Mapper

Unduh file ekstensi Web MIDI Mapper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Web MIDI Mapper Web MIDI Mapper
ID fljflkcpgpkgiofblemmgaaccocembbm
URL Resmi https://chromewebstore.google.com/detail/web-midi-mapper/fljflkcpgpkgiofblemmgaaccocembbm
Deskripsi Control an HTML Element with a MIDI input
Ukuran File 22.4 KB
Jumlah Instalasi 223
Versi Saat Ini 1.0
Terakhir Diperbarui 2023-04-19
Tanggal Publikasi 2023-03-14
Pengembang iAM.Lab
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}