Lily Downloader

Generate video and audio download url for Lily Class.

Co to jest Lily Downloader?

Lily Downloader to rozszerzenie Chrome opracowane przez Ziqiang Li, a jego główną funkcją jest „Generate video and audio download url for Lily Class.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Lily Downloader

Pobierz pliki rozszerzeń Lily Downloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Lily Downloader Lily Downloader
ID bicfofcalgnhfemingaindalckjpbpcj
Oficjalny URL https://chromewebstore.google.com/detail/lily-downloader/bicfofcalgnhfemingaindalckjpbpcj
Opis Generate video and audio download url for Lily Class.
Rozmiar pliku 118 KB
Liczba instalacji 13
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2021-05-01
Data Publikacji 2021-03-01
Deweloper Ziqiang Li
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/liziqiang/lily-dl
Adres URL Strony Pomocy https://github.com/liziqiang/lily-dl
Obsługiwane Języki 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"
}