Jazz-MIDI

MIDI support for browsers

Jazz-MIDI란 무엇입니까?

Jazz-MIDI은(는) https://jazz-soft.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "MIDI support for browsers"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Jazz-MIDI 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Since Google Chrome dropped the NPAPI support, this extension is required to get the functionality previously available via Jazz-Plugin.

This extension requires Jazz-Plugin v.1.5 or later.

Please compare MIDI functionality in Chrome with and without the extension:

https://jazz-soft.github.io/modules/jzz-webmidi.html (plain WebMIDI API)

https://jazz-soft.github.io/modules/jzz-crx.html (Jazz-MIDI extension)

Developers: use JZZ.js for the best cross-browser compatibility.

https://jazz-soft.net/doc/JZZ

Please visit https://github.com/jazz-soft/jazz-midi to view the source code and leave your feedback.                    

확장 프로그램 기본 정보

이름 Jazz-MIDI Jazz-MIDI
ID jhdoobfdaejmldnpihidjemjcbpfmbkm
공식 URL https://chromewebstore.google.com/detail/jazz-midi/jhdoobfdaejmldnpihidjemjcbpfmbkm
설명 MIDI support for browsers
파일 크기 35.07 KB
설치 횟수 10,000
현재 버전 1.0.2.0
최근 업데이트 2020-10-05
출시 날짜 2017-10-01
평점 3.86/5 총 14 개의 평점
개발자 https://jazz-soft.net
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://jazz-soft.net
도움말 페이지 URL http://jazz-soft.org
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jazz-MIDI",
    "description": "MIDI support for browsers",
    "author": "Jazz-Soft",
    "version": "1.0.2.0",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "Jazz-MIDI",
        "default_icon": "good19.png",
        "default_popup": "good.html"
    },
    "permissions": [
        "nativeMessaging"
    ],
    "applications": {
        "gecko": {
            "id": "jazz_midi@jazz_soft.com",
            "strict_min_version": "50.0"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "homepage_url": "https:\/\/jazz-soft.net"
}