uWaterloo Alter Schedule Creator

uWaterloo Alter Schedule Creator

Create a schedule from the other sections of your lectures; in case you ever miss your own

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "uWaterloo Alter Schedule Creator",
  "short_name": "UW alt schedule",
  "version": "1.1.5",
  "description": "Create a schedule from the other sections of your lectures; in case you ever miss your own",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "https://cors-anywhere.herokuapp.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://quest.pecs.uwaterloo.ca/*"
      ],
      "all_frames": true,
      "js": [
        "main.js"
      ]
    }
  ]
}