EECS Lecture Downloader

Download an EECS Lecture!

Что такое EECS Lecture Downloader?

EECS Lecture Downloader - это расширение Chrome, разработанное dctalbot, и его основная функция - "Download an EECS Lecture!".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения EECS Lecture Downloader

Скачайте файлы расширений EECS Lecture Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension provides a link to the source of video lectures at the University of Michigan in the EECS department. Clicking it while holding the option key on your keyboard will download the video straight to your computer.                    

Основная информация о расширении

Название EECS Lecture Downloader EECS Lecture Downloader
ID dgkfpgncgmgcfpgbkofkpecafbagbpko
Официальный URL https://chromewebstore.google.com/detail/eecs-lecture-downloader/dgkfpgncgmgcfpgbkofkpecafbagbpko
Описание Download an EECS Lecture!
Размер файла 407 KB
Количество установок 14
Текущая Версия 1.0
Последнее Обновление 2018-07-01
Дата публикации 2018-06-30
Рейтинг 5.00/5 Всего 1 оценок
Разработчик dctalbot
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EECS Lecture Downloader",
    "version": "1.0",
    "description": "Download an EECS Lecture!",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leccap.engin.umich.edu\/leccap\/viewer*"
            ],
            "css": [
                "styles\/download.css"
            ],
            "js": [
                "download.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/cloud-download.png",
            "32": "images\/cloud-download.png",
            "48": "images\/cloud-download.png",
            "128": "images\/cloud-download.png"
        }
    },
    "icons": {
        "16": "images\/reggie.png",
        "32": "images\/reggie.png",
        "48": "images\/reggie.png",
        "128": "images\/reggie.png"
    },
    "manifest_version": 2
}