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」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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"
            ]
        }
    ]
}