Web MIDI Mapper

Control an HTML Element with a MIDI input

O que é Web MIDI Mapper?

Web MIDI Mapper é uma extensão do Chrome desenvolvida por iAM.Lab, e sua principal característica é "Control an HTML Element with a MIDI input".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Web MIDI Mapper

Baixe arquivos de extensão Web MIDI Mapper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Web MIDI Mapper Web MIDI Mapper
ID fljflkcpgpkgiofblemmgaaccocembbm
URL Oficial https://chromewebstore.google.com/detail/web-midi-mapper/fljflkcpgpkgiofblemmgaaccocembbm
Descrição Control an HTML Element with a MIDI input
Tamanho do Arquivo 22.4 KB
Contagem de Instalações 223
Versão Atual 1.0
Última Atualização 2023-04-19
Data de Publicação 2023-03-14
Desenvolvedor iAM.Lab
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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\/*"
            ]
        }
    ]
}