Music Score Downloader
This extension allows you to download sheets, audio and midi files
Co to jest Music Score Downloader?
Music Score Downloader to rozszerzenie Chrome opracowane przez inguin, a jego główną funkcją jest „This extension allows you to download sheets, audio and midi files”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Music Score Downloader
Pobierz pliki rozszerzeń Music Score Downloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 🙂
Podstawowe informacje o rozszerzeniu
Nazwa | Music Score Downloader |
ID | jhogldboghgffknljgnomjkcfbapogdf |
Oficjalny URL | https://chromewebstore.google.com/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf |
Opis | This extension allows you to download sheets, audio and midi files |
Rozmiar pliku | 809 KB |
Liczba instalacji | 10,061 |
Aktualna Wersja | 0.5.4 |
Ostatnia Aktualizacja | 2024-03-05 |
Data Publikacji | 2023-01-10 |
Ocena | 4.80/5 Łącznie 30 Oceny |
Deweloper | inguin |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ingui-n/musescore-downloader |
Adres URL Strony Pomocy | https://github.com/ingui-n/musescore-downloader/issues |
Obsługiwane Języki | 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" ] } ] } |