MusicDownloader
A chrome plugin for download internet music
MusicDownloaderとは何ですか?
MusicDownloaderはchinahuzeruiによって開発されたChromeの拡張機能で、その主な機能は「A chrome plugin for download internet music」です。
拡張機能のスクリーンショット
MusicDownloader拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |