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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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