Ilias Video Downloader

Allows to download any video from https://ilias.studium.kit.edu.

Что такое Ilias Video Downloader?

Ilias Video Downloader - это расширение Chrome, разработанное AutoWork, и его основная функция - "Allows to download any video from https://ilias.studium.kit.edu.".

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

screenshot

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

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

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

                        This extension adds a custom button close to video thumbnails on KIT Ilias platform, which allows to download the video.                    

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

Название Ilias Video Downloader Ilias Video Downloader
ID leenefgjoiioafkijlmlhjjmokoijfmn
Официальный URL https://chromewebstore.google.com/detail/ilias-video-downloader/leenefgjoiioafkijlmlhjjmokoijfmn
Описание Allows to download any video from https://ilias.studium.kit.edu.
Размер файла 14.14 KB
Количество установок 652
Текущая Версия 0.0.1
Последнее Обновление 2020-11-18
Дата публикации 2020-11-18
Рейтинг 4.67/5 Всего 3 оценок
Разработчик AutoWork
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://home.autowork.dev/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ilias Video Downloader",
    "version": "0.0.1",
    "description": "Allows to download any video from https:\/\/ilias.studium.kit.edu.",
    "icons": {
        "128": "img\/icon_128.png",
        "64": "img\/icon_64.png",
        "48": "img\/icon_48.png",
        "16": "img\/icon_32.png"
    },
    "permissions": [
        "https:\/\/ilias.studium.kit.edu\/"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/ilias.studium.kit.edu\/*"
            ],
            "css": [
                "onAny.css"
            ],
            "js": [
                "onAny.js"
            ]
        }
    ],
    "manifest_version": 2
}