tum-lecture-download
Download lecture recordings from streams.tum.de and lecturio
O que é tum-lecture-download?
tum-lecture-download é uma extensão do Chrome desenvolvida por http://lukaskollmer.de, e sua principal característica é "Download lecture recordings from streams.tum.de and lecturio".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão tum-lecture-download
Baixe arquivos de extensão tum-lecture-download no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
- 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.
Informações Básicas da Extensão
Nome | |
ID | jlbncgdbgjgdimjnihmniommnbhddajf |
URL Oficial | https://chrome.google.com/webstore/detail/tum-lecture-download/jlbncgdbgjgdimjnihmniommnbhddajf |
Descrição | Download lecture recordings from streams.tum.de and lecturio |
Tamanho do Arquivo | 18.13 KB |
Contagem de Instalações | 365 |
Versão Atual | 2020.2 |
Última Atualização | 2020-02-17 |
Data de Publicação | 2020-02-15 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | http://lukaskollmer.de |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/TUM-Dev/lecture-download |
URL da Página de Ajuda | https://github.com/TUM-Dev/lecture-download/issues |
Idiomas Suportados | 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" } } |