EECS Lecture Downloader

Download an EECS Lecture!

Co to jest EECS Lecture Downloader?

EECS Lecture Downloader to rozszerzenie Chrome opracowane przez dctalbot, a jego główną funkcją jest „Download an EECS Lecture!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia EECS Lecture Downloader

Pobierz pliki rozszerzeń EECS Lecture Downloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa EECS Lecture Downloader EECS Lecture Downloader
ID dgkfpgncgmgcfpgbkofkpecafbagbpko
Oficjalny URL https://chromewebstore.google.com/detail/eecs-lecture-downloader/dgkfpgncgmgcfpgbkofkpecafbagbpko
Opis Download an EECS Lecture!
Rozmiar pliku 407 KB
Liczba instalacji 14
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2018-07-01
Data Publikacji 2018-06-30
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper dctalbot
Typ Płatności free
Obsługiwane Języki 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
}