Course Info

Course Info

A Chrome extension that adds previous year course averages and current session average professor ratings to the course selection…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Course Info",
  "version": "0.2",
  "permissions": [
    "tabs"
  ],
  "host_permissions": [
    "https://*/"
  ],
  "action": {
    "default_title": "Course Info",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://courses.students.ubc.ca/*"
      ],
      "js": [
        "jquery.js"
      ]
    },
    {
      "matches": [
        "*://courses.students.ubc.ca/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}