Rate My SMU Professor

Rate My SMU Professor

Adds professor ratings to Southern Methodist University's course search pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Rate My SMU Professor",
  "version": "1.2.1",
  "description": "Adds professor ratings to Southern Methodist University's course search pages.",
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "all_frames": true,
      "matches": [
        "https://my.smu.edu/psc/ps/EMPLOYEE/SA/s/*"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "host_permissions": [
    "https://www.ratemyprofessors.com/graphql"
  ]
}