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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
            ]
        }
    ]
}