UT ProfLinker

UT ProfLinker

An extension that integrates Rate my Professor with the UT course schedule

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "UT ProfLinker",
  "version": "1.0.1",
  "description": "An extension that integrates Rate my Professor with the UT course schedule",
  "content_scripts": [
    {
      "matches": [
        "*://utdirect.utexas.edu/apps/registrar/course_schedule*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "Clicking does nothing",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "outputLowerCase.json"
      ],
      "matches": [
        "*://utdirect.utexas.edu/*"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}