MusicDownloader

A chrome plugin for download internet music

Wat is MusicDownloader?

MusicDownloader is een Chrome-extensie ontwikkeld door chinahuzerui, en de belangrijkste functie is "A chrome plugin for download internet music".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie MusicDownloader

Download MusicDownloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam MusicDownloader MusicDownloader
ID goppdcdcmdiahhfecnpnblcjkfdedjma
Officiële URL https://chromewebstore.google.com/detail/musicdownloader/goppdcdcmdiahhfecnpnblcjkfdedjma
Beschrijving A chrome plugin for download internet music
Bestandsgrootte 39.72 KB
Aantal Installaties 221
Huidige Versie 1.0
Laatst Bijgewerkt 2020-04-06
Publicatiedatum 2020-02-28
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar chinahuzerui
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}