MusicDownloader

A chrome plugin for download internet music

MusicDownloader란 무엇입니까?

MusicDownloader은(는) chinahuzerui에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome plugin for download internet music"입니다.

확장 프로그램 스크린샷

screenshot

MusicDownloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}