Kit Ilias OpenCast Downloader
Downloads lecture recordings from KIT Ilias
Kit Ilias OpenCast Downloaderとは何ですか?
Kit Ilias OpenCast DownloaderはSeineEloquenzによって開発されたChromeの拡張機能で、その主な機能は「Downloads lecture recordings from KIT Ilias」です。
拡張機能のスクリーンショット
Kit Ilias OpenCast Downloader拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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 } |