Web MIDI Mapper

Control an HTML Element with a MIDI input

Cos'è Web MIDI Mapper?

Web MIDI Mapper è un'estensione di Chrome sviluppata da iAM.Lab, e la sua funzione principale è "Control an HTML Element with a MIDI input".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Web MIDI Mapper

Scarica i file di estensione Web MIDI Mapper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Web MIDI Mapper Web MIDI Mapper
ID fljflkcpgpkgiofblemmgaaccocembbm
URL Ufficiale https://chromewebstore.google.com/detail/web-midi-mapper/fljflkcpgpkgiofblemmgaaccocembbm
Descrizione Control an HTML Element with a MIDI input
Dimensione del File 22.4 KB
Conteggio Installazioni 223
Versione Corrente 1.0
Ultimo Aggiornamento 2023-04-19
Data di Pubblicazione 2023-03-14
Sviluppatore iAM.Lab
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
            ]
        }
    ]
}