Lecture Downloader
Downloads UofT MyMedia Videos
Wat is Lecture Downloader?
Lecture Downloader is een Chrome-extensie ontwikkeld door adempster.dev, en de belangrijkste functie is "Downloads UofT MyMedia Videos".
Extensie Screenshots
Download het CRX-bestand van de extensie Lecture Downloader
Download Lecture Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | ndnkcmibkplamecekdhikoadjamfcpfk |
Officiële URL | https://chrome.google.com/webstore/detail/lecture-downloader/ndnkcmibkplamecekdhikoadjamfcpfk |
Beschrijving | Downloads UofT MyMedia Videos |
Bestandsgrootte | 1.71 MB |
Aantal Installaties | 1,219 |
Huidige Versie | 2.0.4 |
Laatst Bijgewerkt | 2021-11-16 |
Publicatiedatum | 2020-10-17 |
Beoordeling | 4.69/5 Totaal 13 Beoordelingen |
Ontwikkelaar | adempster.dev |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://lectures.engscitools.ca |
Ondersteunde Talen | 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" ] } ] } |