Rate My WashU Professors

Rate My WashU Professors

Shows Rate My Professors ratings alongside professor's name in WashU course listing page base on mouse hovering.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rate My WashU Professors",
  "description": "Shows Rate My Professors ratings alongside professor's name in WashU course listing page base on mouse hovering.",
  "version": "0.0.4",
  "action": {
    "default_icon": "Icon_128.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "48": "Icon_48.png",
    "128": "Icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.ratemyprofessors.com/*",
        "https://courses.wustl.edu/*",
        "https://acadinfo.wustl.edu/*"
      ],
      "js": [
        "js/jquery-3.6.0.min.js",
        "js/Script.js",
        "js/Services.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 3
}