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