EECS Lecture Downloader

Download an EECS Lecture!

Vad är EECS Lecture Downloader?

EECS Lecture Downloader är en Chrome-tillägg utvecklad av dctalbot, och dess huvudfunktion är "Download an EECS Lecture!".

Tilläggsskärmbilder

screenshot

Ladda ner EECS Lecture Downloader-förlängningens CRX-fil

Ladda ner EECS Lecture Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn EECS Lecture Downloader EECS Lecture Downloader
ID dgkfpgncgmgcfpgbkofkpecafbagbpko
Officiell webbadress https://chromewebstore.google.com/detail/eecs-lecture-downloader/dgkfpgncgmgcfpgbkofkpecafbagbpko
Beskrivning Download an EECS Lecture!
Filstorlek 407 KB
Antal Installationer 14
Aktuell Version 1.0
Senast Uppdaterad 2018-07-01
Publiceringsdatum 2018-06-30
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare dctalbot
Betalningssätt free
Stödda Språk 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
}