CourseOff Registration for UMD

CourseOff Registration for UMD

This extension allows students registering for classes at the University of Maryland, College Park to load their schedules directly…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "CourseOff Registration for UMD",
  "version": "0.1.0",
  "content_scripts": [
    {
      "matches": [
        "https://umd.courseoff.com/workspace*"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  }
}