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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}