UT Schedule Maker

UT Schedule Maker

This extension allows you to transform your UT schedule (available at https://my.utk.edu) into a downloadable calendar in one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "UT Schedule Maker",
  "description": "This extension allows you to transform your UT schedule (available at https://my.utk.edu) into a downloadable calendar in one click.",
  "version": "1.0",
  "background": {
    "scripts": [
      "background.js",
      "moment.js",
      "ics.js",
      "helpers.js",
      "termDates.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "icon.png"
  },
  "author": "Nathan Orick ([email protected])",
  "page_action": {
    "default_title": "UT Schedule Maker"
  },
  "permissions": [
    "declarativeContent",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://my.utk.edu/*",
        "https://myutk.utk.edu/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "homepage_url": "https://github.com/cnorick/UTK-Schedule-Maker"
}