HuskyReg

HuskyReg

Helper tools for UW course registration

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HuskyReg",
  "description": "Helper tools for UW course registration",
  "version": "0.0.3",
  "options_page": "options.html",
  "omnibox": {
    "keyword": "hr"
  },
  "icons": {
    "16": "img/icon16.jpg",
    "48": "img/icon48.jpg",
    "128": "img/icon128.jpg"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-1.11.1.min.js",
        "timeSch.js",
        "regPage.js",
        "enrollment.js"
      ],
      "matches": [
        "http://www.washington.edu/students/timeschd/*",
        "https://sdb.admin.washington.edu/students/uwnetid/register.asp",
        "https://sdb.admin.washington.edu/timeschd/uwnetid/tsstat.asp*"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "eventPage.js",
      "lib.js"
    ],
    "persistent": false
  },
  "permissions": [
    "storage"
  ]
}