Lily Downloader

Generate video and audio download url for Lily Class.

Was ist Lily Downloader?

Lily Downloader ist eine Chrome-Erweiterung, die von Ziqiang Li entwickelt wurde, und ihr Hauptmerkmal ist "Generate video and audio download url for Lily Class.".

Erweiterungsscreenshots

screenshot

Lily Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Lily Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension can detect all your courses of Lily Class. You can click the course to generate  files of video and audio download urls. Then you can use some m3u8 downloader tool to download them.                    

Grundlegende Informationen zur Erweiterung

Name Lily Downloader Lily Downloader
ID bicfofcalgnhfemingaindalckjpbpcj
Offizielle URL https://chromewebstore.google.com/detail/lily-downloader/bicfofcalgnhfemingaindalckjpbpcj
Beschreibung Generate video and audio download url for Lily Class.
Dateigröße 118 KB
Installationsanzahl 13
Aktuelle Version 1.0.3
Letztes Update 2021-05-01
Veröffentlichungsdatum 2021-03-01
Entwickler Ziqiang Li
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/liziqiang/lily-dl
Hilfeseite URL https://github.com/liziqiang/lily-dl
Unterstützte Sprachen zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lily Downloader",
    "version": "1.0.3",
    "description": "Generate video and audio download url for Lily Class.",
    "author": "Ziqiang Li",
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "background": {
        "page": "background.html"
    },
    "page_action": {
        "default_title": "Lily Downloader",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lilyclass.com\/*"
            ],
            "js": [
                "js\/jquery-3.5.1.slim.min.js",
                "js\/content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "notifications",
        "declarativeContent"
    ],
    "homepage_url": "https:\/\/github.com\/liziqiang\/lily-dl"
}