Music Score Downloader

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

Music Score Downloader क्या है?

Music Score Downloader inguin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to download sheets, audio and midi files"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Music Score Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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"
            ]
        }
    ]
}