Jazz-MIDI

MIDI support for browsers

什么是Jazz-MIDI?

Jazz-MIDI是由https://jazz-soft.net开发的Chrome扩展程序,该扩展的主要功能是“MIDI support for browsers”。

扩展截图

screenshot
screenshot

下载Jazz-MIDI扩展crx文件

下载Jazz-MIDI扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
}