Lecture Downloader

Downloads UofT MyMedia Videos

Lecture Downloader là gì?

Lecture Downloader là một tiện ích mở rộng Chrome được phát triển bởi adempster.dev, và tính năng chính của nó là "Downloads UofT MyMedia Videos".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Lecture Downloader

Tải xuống các tệp mở rộng Lecture Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Lecture Downloader Lecture Downloader
ID ndnkcmibkplamecekdhikoadjamfcpfk
URL Chính Thức https://chrome.google.com/webstore/detail/lecture-downloader/ndnkcmibkplamecekdhikoadjamfcpfk
Mô tả Downloads UofT MyMedia Videos
Kích Thước Tệp 1.71 MB
Số Lần Cài Đặt 1,219
Phiên Bản Hiện Tại 2.0.4
Cập Nhật Lần Cuối 2021-11-16
Ngày Phát Hành 2020-10-17
Đánh Giá 4.69/5 Tổng số 13 Đánh Giá
Nhà Phát Triển adempster.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://lectures.engscitools.ca
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}