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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
- 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 |
| 공식 URL | 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"
}
} | |