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 |
电子邮箱 | [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 } |