Music Score Downloader

This extension allows you to download sheets, audio and midi files

What is Music Score Downloader?

Music Score Downloader is a Chrome extension developed by inguin, and its main feature is "This extension allows you to download sheets, audio and midi files".

Extension Screenshots

screenshot

Download Music Score Downloader Extension CRX File

Download Music Score Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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 🙂                    

Extension Basic Information

Name Music Score Downloader Music Score Downloader
ID jhogldboghgffknljgnomjkcfbapogdf
Official URL https://chromewebstore.google.com/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf
Description This extension allows you to download sheets, audio and midi files
File Size 809 KB
Installation Count 10,061
Current Version 0.5.4
Last Updated 2024-03-05
Publish Date 2023-01-10
Rating 4.80/5 Total 30 Ratings
Developer inguin
Email [email protected]
Payment Type free
Extension Website https://github.com/ingui-n/musescore-downloader
Help Page URL https://github.com/ingui-n/musescore-downloader/issues
Supported Languages 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"
            ]
        }
    ]
}