Kit Ilias OpenCast Downloader
Downloads lecture recordings from KIT Ilias
Что такое Kit Ilias OpenCast Downloader?
Kit Ilias OpenCast Downloader - это расширение Chrome, разработанное SeineEloquenz, и его основная функция - "Downloads lecture recordings from KIT Ilias".
Снимки экрана расширения
Скачать файл CRX расширения Kit Ilias OpenCast Downloader
Скачайте файлы расширений Kit Ilias OpenCast Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension simplifies the process of downloading videos from the Ilias system of Karlsruher Institut für Technologie. If you wanted to download recordings manually, you'd have to search for the link to the video file in the page source. This extension automates that process.
Основная информация о расширении
Название | Kit Ilias OpenCast Downloader |
ID | ocemimikpbpokinfnnncaeamaffpgepb |
Официальный URL | https://chromewebstore.google.com/detail/kit-ilias-opencast-downlo/ocemimikpbpokinfnnncaeamaffpgepb |
Описание | Downloads lecture recordings from KIT Ilias |
Размер файла | 23.6 KB |
Количество установок | 1,058 |
Текущая Версия | 1.4.1 |
Последнее Обновление | 2022-02-01 |
Дата публикации | 2020-07-20 |
Рейтинг | 5.00/5 Всего 7 оценок |
Разработчик | SeineEloquenz |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/SeineEloquenz/kit-ilias-opencast-downloader |
URL страницы помощи | https://github.com/SeineEloquenz/kit-ilias-opencast-downloader/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Kit Ilias OpenCast Downloader", "author": "Alexander Linder", "version": "1.4.1", "description": "Downloads lecture recordings from KIT Ilias", "icons": { "128": "icon128.png" }, "permissions": [ "downloads" ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": { "128": "icon128.png" }, "default_title": "Download video" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/ilias.studium.kit.edu\/*" ], "run_at": "document_end" } ], "manifest_version": 2 } |