PASS2PolyRatings

PASS2PolyRatings

Link teacher names on PASS to PolyRatings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PASS2PolyRatings",
  "description": "Link teacher names on PASS to PolyRatings.",
  "version": "2.0.0",
  "permissions": [
    "webRequest"
  ],
  "icons": {
    "48": "logo48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://pass.calpoly.edu/main.html"
      ],
      "js": [
        "data.js",
        "linker.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end"
    }
  ]
}