Web MIDI Mapper

Control an HTML Element with a MIDI input

Qu'est-ce que Web MIDI Mapper ?

Web MIDI Mapper est une extension Chrome développée par iAM.Lab, et sa fonction principale est "Control an HTML Element with a MIDI input".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Web MIDI Mapper

Téléchargez les fichiers d'extension Web MIDI Mapper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Web MIDI Mapper Web MIDI Mapper
ID fljflkcpgpkgiofblemmgaaccocembbm
URL Officiel https://chromewebstore.google.com/detail/web-midi-mapper/fljflkcpgpkgiofblemmgaaccocembbm
Description Control an HTML Element with a MIDI input
Taille du Fichier 22.4 KB
Nombre d'Installations 223
Version Actuelle 1.0
Dernière Mise à Jour 2023-04-19
Date de Publication 2023-03-14
Développeur iAM.Lab
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}