PCO MusicStand MIDI control

Control PCO MusicStand (web version) using MIDI commands

PCO MusicStand MIDI controlคืออะไร?

PCO MusicStand MIDI control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย martijnversluis และคุณลักษณะหลักของมันคือ "Control PCO MusicStand (web version) using MIDI commands"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PCO MusicStand MIDI control

ดาวน์โหลดไฟล์ส่วนขยาย PCO MusicStand MIDI control ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This extension allows you to control Planning Center Online's Music Stand (the web version) using MIDI messages. Use a NanoKontrol to change slides, or automate Music Stand using Ableton Live

Currently 3 types of MIDI messages are supported:

🎵 NOTE ON: you can assign a specific note to go to the previous or next slide

🎛 CONTROL CHANGE: you can assign a specific control change (CC) number to go to the previous or next slide. You also navigate to a specific slide, in that case the control change value (CC value) determines the slide number: value=0 will navigate to slide #1, value=1 for slide #2 etc.

⏭ PROGRAM CHANGE: allows you to navigate to a specific slide, the program number determines the slide number: program 0 will navigate to slide #1, program 1 for slide #2 etc.

🐛I want to keep this extension free of bugs, so please submit any QUESTION or BUG on Github (https://github.com/martijnversluis/pco-musicstand-midi-control-chrome-extension/issues).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ PCO MusicStand MIDI control PCO MusicStand MIDI control
ID kmembogkkaemdjopnnmpmikldmlclfhc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pco-musicstand-midi-contr/kmembogkkaemdjopnnmpmikldmlclfhc
คำอธิบาย Control PCO MusicStand (web version) using MIDI commands
ขนาดไฟล์ 41.22 KB
จำนวนการติดตั้ง 100
เวอร์ชันปัจจุบัน 0.0.5
อัปเดตครั้งล่าสุด 2020-12-10
วันที่เผยแพร่ 2020-05-28
ผู้พัฒนา martijnversluis
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/martijnversluis/pco-musicstand-midi-control-chrome-extension
URL หน้าช่วยเหลือ https://github.com/martijnversluis/pco-musicstand-midi-control-chrome-extension/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PCO MusicStand MIDI control",
    "version": "0.0.5",
    "description": "Control PCO MusicStand (web version) using MIDI commands",
    "manifest_version": 2,
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/services.planningcenteronline.com\/music_stand*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "web_accessible_resources": [
        "\/page_script.js"
    ]
}