Music Score Downloader

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

Wat is Music Score Downloader?

Music Score Downloader is een Chrome-extensie ontwikkeld door inguin, en de belangrijkste functie is "This extension allows you to download sheets, audio and midi files".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Music Score Downloader

Download Music Score Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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 🙂                    

Basisinformatie over de Extensie

Naam Music Score Downloader Music Score Downloader
ID jhogldboghgffknljgnomjkcfbapogdf
Officiële URL https://chromewebstore.google.com/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf
Beschrijving This extension allows you to download sheets, audio and midi files
Bestandsgrootte 809 KB
Aantal Installaties 10,061
Huidige Versie 0.5.4
Laatst Bijgewerkt 2024-03-05
Publicatiedatum 2023-01-10
Beoordeling 4.80/5 Totaal 30 Beoordelingen
Ontwikkelaar inguin
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/ingui-n/musescore-downloader
Help Pagina-URL https://github.com/ingui-n/musescore-downloader/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}