Music Score Downloader
This extension allows you to download sheets, audio and midi files
Vad är Music Score Downloader?
Music Score Downloader är en Chrome-tillägg utvecklad av inguin, och dess huvudfunktion är "This extension allows you to download sheets, audio and midi files".
Tilläggsskärmbilder
Ladda ner Music Score Downloader-förlängningens CRX-fil
Ladda ner Music Score Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 🙂 Grundläggande Information om Tillägg
| Namn | |
| ID | jhogldboghgffknljgnomjkcfbapogdf |
| Officiell webbadress | https://chromewebstore.google.com/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf |
| Beskrivning | This extension allows you to download sheets, audio and midi files |
| Filstorlek | 809 KB |
| Antal Installationer | 10,061 |
| Aktuell Version | 0.5.4 |
| Senast Uppdaterad | 2024-03-05 |
| Publiceringsdatum | 2023-01-10 |
| Betyg | 4.80/5 Totalt 30 Betyg |
| Utvecklare | inguin |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/ingui-n/musescore-downloader |
| Hjälpsida URL | https://github.com/ingui-n/musescore-downloader/issues |
| Stödda Språk | 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"
]
}
]
} | |