Music Score Downloader
This extension allows you to download sheets, audio and midi files
Music Score Downloader là gì?
Music Score Downloader là một tiện ích mở rộng Chrome được phát triển bởi inguin, và tính năng chính của nó là "This extension allows you to download sheets, audio and midi files".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Music Score Downloader
Tải xuống các tệp mở rộng Music Score Downloader 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
This extension allows you to download: ➡️ audio - mp3 ➡️ music sheets - pdf ➡️ midi - mid ⚠️ Doesn't work on official scores ⚠️ Please use it for study purposes only 🙂
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Music Score Downloader |
ID | jhogldboghgffknljgnomjkcfbapogdf |
URL Chính Thức | https://chromewebstore.google.com/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf |
Mô tả | This extension allows you to download sheets, audio and midi files |
Kích Thước Tệp | 809 KB |
Số Lần Cài Đặt | 10,061 |
Phiên Bản Hiện Tại | 0.5.4 |
Cập Nhật Lần Cuối | 2024-03-05 |
Ngày Phát Hành | 2023-01-10 |
Đánh Giá | 4.80/5 Tổng số 30 Đánh Giá |
Nhà Phát Triển | inguin |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ingui-n/musescore-downloader |
URL Trang Trợ Giúp | https://github.com/ingui-n/musescore-downloader/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "This extension allows you to download sheets, audio and midi files", "version": "0.5.4", "manifest_version": 3, "name": "Music Score Downloader", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "webRequest" ], "host_permissions": [ "https:\/\/musescore.com\/*", "https:\/\/s3.ultimate-guitar.com\/musescore.scoredata\/g\/*" ], "action": { "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/musescore.com\/*" ], "run_at": "document_start", "js": [ "content.js" ] } ] } |