tum-lecture-download
Download lecture recordings from streams.tum.de and lecturio
tum-lecture-download là gì?
tum-lecture-download là một tiện ích mở rộng Chrome được phát triển bởi http://lukaskollmer.de, và tính năng chính của nó là "Download lecture recordings from streams.tum.de and lecturio".
Ả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 tum-lecture-download
Tải xuống các tệp mở rộng tum-lecture-download 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
- Download lecture recordings from streams.tum.de - Download lecture recordings from lecturio - Supports bulk-downloading slides (for lecture recordings where the slides aren't uploaded as a single video stream, but instead as individual images) and re-assembling them into a video file, with the slide offsets matching the presenter-recording - See the GitHub page for instructions on how slide downloading works Source code available at github.com/TUM-Dev/lecture-download Note: downloading from streams.tum.de requires a TUM account. downloading from lecturio does not. PRIVACY POLICY: - This extension does not track usage data - This extension does neither collect, nor store any user-identifying information or data - In order to function properly, this extension needs to read a cookie, which is sent to a TUM server (the same server which set the cookie in the first place). We do not collect or store its contents.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | jlbncgdbgjgdimjnihmniommnbhddajf |
URL Chính Thức | https://chrome.google.com/webstore/detail/tum-lecture-download/jlbncgdbgjgdimjnihmniommnbhddajf |
Mô tả | Download lecture recordings from streams.tum.de and lecturio |
Kích Thước Tệp | 18.13 KB |
Số Lần Cài Đặt | 365 |
Phiên Bản Hiện Tại | 2020.2 |
Cập Nhật Lần Cuối | 2020-02-17 |
Ngày Phát Hành | 2020-02-15 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | http://lukaskollmer.de |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/TUM-Dev/lecture-download |
URL Trang Trợ Giúp | https://github.com/TUM-Dev/lecture-download/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "tum-lecture-download", "description": "Download lecture recordings from streams.tum.de and lecturio", "version": "2020.2", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "static\/images\/icon_128.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self'; object-src 'self'", "permissions": [ "tabs", "cookies", "downloads", "*:\/\/streams.tum.de\/*", "*:\/\/www.lecturio.de\/*" ], "icons": { "128": "static\/images\/icon_128.png", "146": "static\/images\/icon_146.png" } } |