Web MIDI Mapper

Control an HTML Element with a MIDI input

Co to jest Web MIDI Mapper?

Web MIDI Mapper to rozszerzenie Chrome opracowane przez iAM.Lab, a jego główną funkcją jest „Control an HTML Element with a MIDI input”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Web MIDI Mapper

Pobierz pliki rozszerzeń Web MIDI Mapper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Web MIDI Mapper Web MIDI Mapper
ID fljflkcpgpkgiofblemmgaaccocembbm
Oficjalny URL https://chromewebstore.google.com/detail/web-midi-mapper/fljflkcpgpkgiofblemmgaaccocembbm
Opis Control an HTML Element with a MIDI input
Rozmiar pliku 22.4 KB
Liczba instalacji 223
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-04-19
Data Publikacji 2023-03-14
Deweloper iAM.Lab
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}