tum-lecture-download
Download lecture recordings from streams.tum.de and lecturio
tum-lecture-download क्या है?
tum-lecture-download http://lukaskollmer.de द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download lecture recordings from streams.tum.de and lecturio"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में tum-lecture-download एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |