Kit Ilias OpenCast Downloader
Downloads lecture recordings from KIT Ilias
Co to jest Kit Ilias OpenCast Downloader?
Kit Ilias OpenCast Downloader to rozszerzenie Chrome opracowane przez SeineEloquenz, a jego główną funkcją jest „Downloads lecture recordings from KIT Ilias”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Kit Ilias OpenCast Downloader
Pobierz pliki rozszerzeń Kit Ilias OpenCast 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 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.
Podstawowe informacje o rozszerzeniu
Nazwa | Kit Ilias OpenCast Downloader |
ID | ocemimikpbpokinfnnncaeamaffpgepb |
Oficjalny URL | https://chromewebstore.google.com/detail/kit-ilias-opencast-downlo/ocemimikpbpokinfnnncaeamaffpgepb |
Opis | Downloads lecture recordings from KIT Ilias |
Rozmiar pliku | 23.6 KB |
Liczba instalacji | 1,058 |
Aktualna Wersja | 1.4.1 |
Ostatnia Aktualizacja | 2022-02-01 |
Data Publikacji | 2020-07-20 |
Ocena | 5.00/5 Łącznie 7 Oceny |
Deweloper | SeineEloquenz |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/SeineEloquenz/kit-ilias-opencast-downloader |
Adres URL Strony Pomocy | https://github.com/SeineEloquenz/kit-ilias-opencast-downloader/issues |
Obsługiwane Języki | 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 } |