Lecture Downloader

Downloads UofT MyMedia Videos

Lecture Downloader क्या है?

Lecture Downloader adempster.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Downloads UofT MyMedia Videos"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Lecture Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Lecture Downloader Lecture Downloader
ID ndnkcmibkplamecekdhikoadjamfcpfk
आधिकारिक URL https://chrome.google.com/webstore/detail/lecture-downloader/ndnkcmibkplamecekdhikoadjamfcpfk
विवरण Downloads UofT MyMedia Videos
फ़ाइल का आकार 1.71 MB
स्थापना संख्या 1,219
वर्तमान संस्करण 2.0.4
अंतिम अपडेट 2021-11-16
प्रकाशन तिथि 2020-10-17
रेटिंग 4.69/5 कुल 13 रेटिंग्स
डेवलपर adempster.dev
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://lectures.engscitools.ca
समर्थित भाषाएँ 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"
            ]
        }
    ]
}