ProfCheck

ProfCheck

View Rate My Professors ratings directly in your course explorer!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ProfCheck",
  "description": "View Rate My Professors ratings directly in your course explorer!",
  "version": "1.3.1",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://courses.students.ubc.ca/cs/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [],
  "host_permissions": [
    "https://*.ratemyprofessors.com/*"
  ],
  "icons": {
    "128": "icon128.png"
  }
}