Web MIDI Mapper

Control an HTML Element with a MIDI input

ما هو Web MIDI Mapper؟

Web MIDI Mapper هو إضافة Chrome تم تطويرها بواسطة iAM.Lab، والميزة الرئيسية لها هي "Control an HTML Element with a MIDI input".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Web MIDI Mapper

قم بتنزيل ملفات الامتداد Web MIDI Mapper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Web MIDI Mapper Web MIDI Mapper
ID fljflkcpgpkgiofblemmgaaccocembbm
عنوان URL الرسمي https://chromewebstore.google.com/detail/web-midi-mapper/fljflkcpgpkgiofblemmgaaccocembbm
الوصف Control an HTML Element with a MIDI input
حجم الملف 22.4 KB
عدد التثبيتات 223
النسخة الحالية 1.0
آخر تحديث 2023-04-19
تاريخ النشر 2023-03-14
المطور iAM.Lab
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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\/*"
            ]
        }
    ]
}