Jazz-MIDI

MIDI support for browsers

Jazz-MIDI là gì?

Jazz-MIDI là một tiện ích mở rộng Chrome được phát triển bởi https://jazz-soft.net, và tính năng chính của nó là "MIDI support for browsers".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Jazz-MIDI

Tải xuống các tệp mở rộng Jazz-MIDI dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Jazz-MIDI Jazz-MIDI
ID jhdoobfdaejmldnpihidjemjcbpfmbkm
URL Chính Thức https://chromewebstore.google.com/detail/jazz-midi/jhdoobfdaejmldnpihidjemjcbpfmbkm
Mô tả MIDI support for browsers
Kích Thước Tệp 35.07 KB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 1.0.2.0
Cập Nhật Lần Cuối 2020-10-05
Ngày Phát Hành 2017-10-01
Đánh Giá 3.86/5 Tổng số 14 Đánh Giá
Nhà Phát Triển https://jazz-soft.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://jazz-soft.net
URL Trang Trợ Giúp http://jazz-soft.org
Ngôn Ngữ Được Hỗ Trợ 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"
}