Lecture Downloader

Downloads UofT MyMedia Videos

Lecture Downloader란 무엇입니까?

Lecture Downloader은(는) adempster.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Downloads UofT MyMedia Videos"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Lecture Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}