Music Score Downloader

This extension allows you to download sheets, audio and midi files

ما هو Music Score Downloader؟

Music Score Downloader هو إضافة Chrome تم تطويرها بواسطة inguin، والميزة الرئيسية لها هي "This extension allows you to download sheets, audio and midi files".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Music Score Downloader

قم بتنزيل ملفات الامتداد Music Score Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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 🙂                    

معلومات أساسية عن التمديد

الاسم Music Score Downloader Music Score Downloader
ID jhogldboghgffknljgnomjkcfbapogdf
عنوان URL الرسمي https://chromewebstore.google.com/detail/music-score-downloader/jhogldboghgffknljgnomjkcfbapogdf
الوصف This extension allows you to download sheets, audio and midi files
حجم الملف 809 KB
عدد التثبيتات 10,061
النسخة الحالية 0.5.4
آخر تحديث 2024-03-05
تاريخ النشر 2023-01-10
تقييم 4.80/5 مجموع تقييمات 30
المطور inguin
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/ingui-n/musescore-downloader
عنوان صفحة المساعدة https://github.com/ingui-n/musescore-downloader/issues
اللغات المدعومة 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"
            ]
        }
    ]
}