Lecture Downloader

Downloads UofT MyMedia Videos

Hvad er Lecture Downloader?

Lecture Downloader er en Chrome-udvidelse udviklet af adempster.dev, og dens hovedfunktion er "Downloads UofT MyMedia Videos".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Lecture Downloader-udvidelses-CRX-fil

Download Lecture Downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Lecture Downloader Lecture Downloader
ID ndnkcmibkplamecekdhikoadjamfcpfk
Officiel URL https://chrome.google.com/webstore/detail/lecture-downloader/ndnkcmibkplamecekdhikoadjamfcpfk
Beskrivelse Downloads UofT MyMedia Videos
Filstørrelse 1.71 MB
Antal Installationer 1,219
Nuværende Version 2.0.4
Senest Opdateret 2021-11-16
Udgivelsesdato 2020-10-17
Bedømmelse 4.69/5 Samlet 13 Bedømmelser
Udvikler adempster.dev
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://lectures.engscitools.ca
Understøttede Sprog 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"
            ]
        }
    ]
}