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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
            ]
        }
    ]
}