Kit Ilias OpenCast Downloader
Downloads lecture recordings from KIT Ilias
What is Kit Ilias OpenCast Downloader?
Kit Ilias OpenCast Downloader is a Chrome extension developed by SeineEloquenz, and its main feature is "Downloads lecture recordings from KIT Ilias".
Extension Screenshots
Download Kit Ilias OpenCast Downloader Extension CRX File
Download Kit Ilias OpenCast Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Kit Ilias OpenCast Downloader |
ID | ocemimikpbpokinfnnncaeamaffpgepb |
Official URL | https://chromewebstore.google.com/detail/kit-ilias-opencast-downlo/ocemimikpbpokinfnnncaeamaffpgepb |
Description | Downloads lecture recordings from KIT Ilias |
File Size | 23.6 KB |
Installation Count | 1,058 |
Current Version | 1.4.1 |
Last Updated | 2022-02-01 |
Publish Date | 2020-07-20 |
Rating | 5.00/5 Total 7 Ratings |
Developer | SeineEloquenz |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/SeineEloquenz/kit-ilias-opencast-downloader |
Help Page URL | https://github.com/SeineEloquenz/kit-ilias-opencast-downloader/issues |
Supported Languages | 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 } |