MusicDownloader

A chrome plugin for download internet music

MusicDownloader là gì?

MusicDownloader là một tiện ích mở rộng Chrome được phát triển bởi chinahuzerui, và tính năng chính của nó là "A chrome plugin for download internet music".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng MusicDownloader

Tải xuống các tệp mở rộng MusicDownloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MusicDownloader MusicDownloader
ID goppdcdcmdiahhfecnpnblcjkfdedjma
URL Chính Thức https://chromewebstore.google.com/detail/musicdownloader/goppdcdcmdiahhfecnpnblcjkfdedjma
Mô tả A chrome plugin for download internet music
Kích Thước Tệp 39.72 KB
Số Lần Cài Đặt 221
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-04-06
Ngày Phát Hành 2020-02-28
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển chinahuzerui
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}