Music Score Downloader
This extension allows you to download sheets, audio and midi files
Was ist Music Score Downloader?
Music Score Downloader ist eine Chrome-Erweiterung, die von inguin entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to download sheets, audio and midi files".
Erweiterungsscreenshots
Music Score Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Music Score Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 🙂 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jhogldboghgffknljgnomjkcfbapogdf |
| Offizielle URL | https://chromewebstore.google.com/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf |
| Beschreibung | This extension allows you to download sheets, audio and midi files |
| Dateigröße | 809 KB |
| Installationsanzahl | 10,061 |
| Aktuelle Version | 0.5.4 |
| Letztes Update | 2024-03-05 |
| Veröffentlichungsdatum | 2023-01-10 |
| Bewertung | 4.80/5 Insgesamt 30 Bewertungen |
| Entwickler | inguin |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/ingui-n/musescore-downloader |
| Hilfeseite URL | https://github.com/ingui-n/musescore-downloader/issues |
| Unterstützte Sprachen | 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"
]
}
]
} | |