Lecture Downloader

Downloads UofT MyMedia Videos

ما هو Lecture Downloader؟

Lecture Downloader هو إضافة Chrome تم تطويرها بواسطة adempster.dev، والميزة الرئيسية لها هي "Downloads UofT MyMedia Videos".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Lecture Downloader

قم بتنزيل ملفات الامتداد Lecture Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}