Music Score Downloader
This extension allows you to download sheets, audio and midi files
Cos'è Music Score Downloader?
Music Score Downloader è un'estensione di Chrome sviluppata da inguin, e la sua funzione principale è "This extension allows you to download sheets, audio and midi files".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Music Score Downloader
Scarica i file di estensione Music Score Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 🙂
Informazioni di Base sull'Estensione
Nome | Music Score Downloader |
ID | jhogldboghgffknljgnomjkcfbapogdf |
URL Ufficiale | https://chromewebstore.google.com/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf |
Descrizione | This extension allows you to download sheets, audio and midi files |
Dimensione del File | 809 KB |
Conteggio Installazioni | 10,061 |
Versione Corrente | 0.5.4 |
Ultimo Aggiornamento | 2024-03-05 |
Data di Pubblicazione | 2023-01-10 |
Valutazione | 4.80/5 Totale 30 Valutazioni |
Sviluppatore | inguin |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ingui-n/musescore-downloader |
URL della Pagina di Aiuto | https://github.com/ingui-n/musescore-downloader/issues |
Lingue Supportate | 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" ] } ] } |