MusicDownloader

A chrome plugin for download internet music

ما هو MusicDownloader؟

MusicDownloader هو إضافة Chrome تم تطويرها بواسطة chinahuzerui، والميزة الرئيسية لها هي "A chrome plugin for download internet music".

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

screenshot

تحميل ملف CRX للإضافة MusicDownloader

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

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

                        Download music from QQ or Netease music website by an one click button injected. The resource comes from internet, and the download service support by yuweining.                    

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

الاسم MusicDownloader MusicDownloader
ID goppdcdcmdiahhfecnpnblcjkfdedjma
عنوان URL الرسمي https://chromewebstore.google.com/detail/musicdownloader/goppdcdcmdiahhfecnpnblcjkfdedjma
الوصف A chrome plugin for download internet music
حجم الملف 39.72 KB
عدد التثبيتات 221
النسخة الحالية 1.0
آخر تحديث 2020-04-06
تاريخ النشر 2020-02-28
تقييم 5.00/5 مجموع تقييمات 1
المطور chinahuzerui
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MusicDownloader",
    "description": "A chrome plugin for download internet music",
    "version": "1.0",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Music Downloader"
    },
    "content_security_policy": "script-src 'self' https:\/\/cdn.bootcss.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/music.163.com\/*"
            ],
            "js": [
                "libs\/jquery.min.js",
                "content_scripts\/netease.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/y.qq.com\/*"
            ],
            "js": [
                "libs\/jquery.min.js",
                "content_scripts\/qq.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/music.qugeek.com\/*"
            ],
            "js": [
                "libs\/jquery.min.js",
                "content_scripts\/qugeek.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "inject.js"
    ]
}