MusicDownloader
A chrome plugin for download internet music
What is MusicDownloader?
MusicDownloader is a Chrome extension developed by chinahuzerui, and its main feature is "A chrome plugin for download internet music".
Extension Screenshots
Download MusicDownloader Extension CRX File
Download MusicDownloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | MusicDownloader |
ID | goppdcdcmdiahhfecnpnblcjkfdedjma |
Official URL | https://chromewebstore.google.com/detail/musicdownloader/goppdcdcmdiahhfecnpnblcjkfdedjma |
Description | A chrome plugin for download internet music |
File Size | 39.72 KB |
Installation Count | 221 |
Current Version | 1.0 |
Last Updated | 2020-04-06 |
Publish Date | 2020-02-28 |
Rating | 5.00/5 Total 1 Ratings |
Developer | chinahuzerui |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |