Kit Ilias OpenCast Downloader
Downloads lecture recordings from KIT Ilias
Kit Ilias OpenCast Downloader là gì?
Kit Ilias OpenCast Downloader là một tiện ích mở rộng Chrome được phát triển bởi SeineEloquenz, và tính năng chính của nó là "Downloads lecture recordings from KIT Ilias".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Kit Ilias OpenCast Downloader
Tải xuống các tệp mở rộng Kit Ilias OpenCast Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Kit Ilias OpenCast Downloader |
ID | ocemimikpbpokinfnnncaeamaffpgepb |
URL Chính Thức | https://chromewebstore.google.com/detail/kit-ilias-opencast-downlo/ocemimikpbpokinfnnncaeamaffpgepb |
Mô tả | Downloads lecture recordings from KIT Ilias |
Kích Thước Tệp | 23.6 KB |
Số Lần Cài Đặt | 1,058 |
Phiên Bản Hiện Tại | 1.4.1 |
Cập Nhật Lần Cuối | 2022-02-01 |
Ngày Phát Hành | 2020-07-20 |
Đánh Giá | 5.00/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | SeineEloquenz |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/SeineEloquenz/kit-ilias-opencast-downloader |
URL Trang Trợ Giúp | https://github.com/SeineEloquenz/kit-ilias-opencast-downloader/issues |
Ngôn Ngữ Được Hỗ Trợ | 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 } |