EECS Lecture Downloader

EECS Lecture Downloader

Download an EECS Lecture!

Merlin
Additional files are visible only to premium users

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
}