UMD Professor Ratings

UMD Professor Ratings

This extension displays professor ratings next to the classes they are teaching.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "UMD Professor Ratings",
  "description": "This extension displays professor ratings next to the classes they are teaching.",
  "version": "1.0.1",
  "content_scripts": [
    {
      "matches": [
        "https://app.testudo.umd.edu/soc/*"
      ],
      "js": [
        "jquery.js",
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*"
      ],
      "matches": [
        "https://app.testudo.umd.edu/*"
      ],
      "extension_ids": []
    }
  ],
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png"
  }
}