Music Score Downloader
This extension allows you to download sheets, audio and midi files
Co je Music Score Downloader?
Music Score Downloader je rozšíření Chrome vyvinuté inguin, a jeho hlavní funkcí je „This extension allows you to download sheets, audio and midi files“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Music Score Downloader
Stáhněte si soubory rozšíření Music Score Downloader ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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 🙂
Základní Informace o Rozšíření
Název | Music Score Downloader |
ID | jhogldboghgffknljgnomjkcfbapogdf |
Oficiální URL | https://chromewebstore.google.com/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf |
Popis | This extension allows you to download sheets, audio and midi files |
Velikost souboru | 809 KB |
Počet instalací | 10,061 |
Aktuální Verze | 0.5.4 |
Poslední Aktualizace | 2024-03-05 |
Datum Vydání | 2023-01-10 |
Hodnocení | 4.80/5 Celkem 30 Hodnocení |
Vývojář | inguin |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/ingui-n/musescore-downloader |
URL Stránky Nápovědy | https://github.com/ingui-n/musescore-downloader/issues |
Podporované Jazyky | 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" ] } ] } |