tum-lecture-download
Download lecture recordings from streams.tum.de and lecturio
什麼是tum-lecture-download?
tum-lecture-download是由http://lukaskollmer.de開發的Chrome擴展程式,該擴展的主要功能是“Download lecture recordings from streams.tum.de and lecturio”。
擴展截圖
下載tum-lecture-download擴展crx文件
下載tum-lecture-download擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
- 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. 擴展基本資訊
| 名稱 | |
| ID | jlbncgdbgjgdimjnihmniommnbhddajf |
| 官方網址 | https://chrome.google.com/webstore/detail/tum-lecture-download/jlbncgdbgjgdimjnihmniommnbhddajf |
| 簡介 | Download lecture recordings from streams.tum.de and lecturio |
| 檔案大小 | 18.13 KB |
| 安裝次數 | 365 |
| 目前版本 | 2020.2 |
| 更新時間 | 2020-02-17 |
| 上架時間 | 2020-02-15 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | http://lukaskollmer.de |
| 付費類型 | free |
| 擴展官網 | https://github.com/TUM-Dev/lecture-download |
| 說明頁面URL | https://github.com/TUM-Dev/lecture-download/issues |
| 支援的語言 | 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"
}
} | |