Lily Downloader

Generate video and audio download url for Lily Class.

Что такое Lily Downloader?

Lily Downloader - это расширение Chrome, разработанное Ziqiang Li, и его основная функция - "Generate video and audio download url for Lily Class.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Lily Downloader

Скачайте файлы расширений Lily Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Lily Downloader Lily Downloader
ID bicfofcalgnhfemingaindalckjpbpcj
Официальный URL https://chromewebstore.google.com/detail/lily-downloader/bicfofcalgnhfemingaindalckjpbpcj
Описание Generate video and audio download url for Lily Class.
Размер файла 118 KB
Количество установок 13
Текущая Версия 1.0.3
Последнее Обновление 2021-05-01
Дата публикации 2021-03-01
Разработчик Ziqiang Li
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/liziqiang/lily-dl
URL страницы помощи https://github.com/liziqiang/lily-dl
Поддерживаемые языки 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"
}