Rate My Professor, for ACC

Integrates Rate My Professor with Austin Community College's Self Service page.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "marsnebulasoup",
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://selfservice.austincc.edu/Student/Courses/*",
        "https://selfservice.austincc.edu/Student/Student/Courses/*"
      ],
      "css": [
        "content-scripts/styles/widget.css"
      ],
      "js": [
        "content-scripts/dom-watcher.js"
      ]
    }
  ],
  "action": {
    "default_popup": "ui/popover.html",
    "default_icon": {
      "16": "/images/16x16.png",
      "24": "/images/32x32.png",
      "32": "/images/32x32.png",
      "48": "/images/48x48.png",
      "64": "/images/64x64.png",
      "128": "/images/128x128.png"
    }
  },
  "icons": {
    "16": "/images/16x16.png",
    "24": "/images/32x32.png",
    "32": "/images/32x32.png",
    "48": "/images/48x48.png",
    "64": "/images/64x64.png",
    "128": "/images/128x128.png"
  },
  "version": "1.2.1",
  "name": "Rate My Professor, for ACC",
  "manifest_version": 3,
  "description": "Integrates Rate My Professor with Austin Community College's Self Service page.",
  "web_accessible_resources": [
    {
      "matches": [
        "https://selfservice.austincc.edu/*"
      ],
      "resources": [
        "modules/*",
        "node_modules/*",
        "images/icons/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ]
}