Lecture Downloader

Downloads UofT MyMedia Videos

Cos'è Lecture Downloader?

Lecture Downloader è un'estensione di Chrome sviluppata da adempster.dev, e la sua funzione principale è "Downloads UofT MyMedia Videos".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Lecture Downloader

Scarica i file di estensione Lecture Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Lecture Downloader Lecture Downloader
ID ndnkcmibkplamecekdhikoadjamfcpfk
URL Ufficiale https://chrome.google.com/webstore/detail/lecture-downloader/ndnkcmibkplamecekdhikoadjamfcpfk
Descrizione Downloads UofT MyMedia Videos
Dimensione del File 1.71 MB
Conteggio Installazioni 1,219
Versione Corrente 2.0.4
Ultimo Aggiornamento 2021-11-16
Data di Pubblicazione 2020-10-17
Valutazione 4.69/5 Totale 13 Valutazioni
Sviluppatore adempster.dev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://lectures.engscitools.ca
Lingue Supportate 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"
            ]
        }
    ]
}