Chico State Schedule Helper

Chico State Schedule Helper

Extension that shows professor's rate my professor score next to their name on portal with a click of a button!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Chico State Schedule Helper",
  "author": "Numan Khan, Luke Hazelton",
  "version": "1.1.4",
  "host_permissions": [
    "https://*.cmsweb.csuchico.edu/*",
    "https://*.ratemyprofessors.com/*"
  ],
  "description": "Extension that shows professor's rate my professor score next to their name on portal with a click of a button!",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.cmsweb.csuchico.edu/*",
        "https://*.ratemyprofessors.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "scheduleBuilderScript.js",
        "contentScript.js",
        "teacherUtils.js",
        "ratingUtils.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
    "sandboxed_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "imgs/save.svg"
      ],
      "matches": [
        "https://*.cmsweb.csuchico.edu/*",
        "https://*.ratemyprofessors.com/*"
      ]
    }
  ]
}