Lecture Downloader
Downloads UofT MyMedia Videos
What is Lecture Downloader?
Lecture Downloader is a Chrome extension developed by adempster.dev, and its main feature is "Downloads UofT MyMedia Videos".
Extension Screenshots
Download Lecture Downloader Extension CRX File
Download Lecture Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Allows University of Toronto students to download their online lectures to view offline and on their preferred viewer. BBColaborate download buttons appear even when professors turn off downloading.
Extension Basic Information
Name | |
ID | ndnkcmibkplamecekdhikoadjamfcpfk |
Official URL | https://chrome.google.com/webstore/detail/lecture-downloader/ndnkcmibkplamecekdhikoadjamfcpfk |
Description | Downloads UofT MyMedia Videos |
File Size | 1.71 MB |
Installation Count | 1,219 |
Current Version | 2.0.4 |
Last Updated | 2021-11-16 |
Publish Date | 2020-10-17 |
Rating | 4.69/5 Total 13 Ratings |
Developer | adempster.dev |
[email protected] | |
Payment Type | free |
Extension Website | http://lectures.engscitools.ca |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lecture Downloader", "version": "2.0.4", "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "description": "Downloads UofT MyMedia Videos", "icons": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Lecture Downloader", "default_popup": "popup.html" }, "permissions": [ "downloads" ], "content_scripts": [ { "matches": [ "*:\/\/*.utoronto.ca\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] }, { "matches": [ "*:\/\/*.bbcollab.com\/*" ], "js": [ "contentScriptBB.js" ] } ] } |