Music Score Downloader
This extension allows you to download sheets, audio and midi files
什么是Music Score Downloader?
Music Score Downloader是由inguin开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to download sheets, audio and midi files”。
扩展截图
下载Music Score Downloader扩展crx文件
下载Music Score Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 🙂
扩展基本信息
名称 | Music Score Downloader |
ID | jhogldboghgffknljgnomjkcfbapogdf |
官方URL | https://chromewebstore.google.com/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf |
简介 | This extension allows you to download sheets, audio and midi files |
文件大小 | 809 KB |
安装次数 | 10,061 |
当前版本 | 0.5.4 |
更新时间 | 2024-03-05 |
上架时间 | 2023-01-10 |
评分 | 4.80/5 共30次评分 |
开发者 | inguin |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/ingui-n/musescore-downloader |
帮助页面URL | https://github.com/ingui-n/musescore-downloader/issues |
支持的语言 | 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" ] } ] } |