Portland State RateMyProfessors

Portland State RateMyProfessors

Displays professors' RateMyProfessors ratings in the online course listings for Portland State University.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Portland State RateMyProfessors",
  "description": "Displays professors' RateMyProfessors ratings in the online course listings for Portland State University.",
  "version": "1.0.1",
  "manifest_version": 2,
  "permissions": [
    "*://*.ratemyprofessors.com/*"
  ],
  "icons": {
    "16": "rmpIcon.png",
    "48": "rmpIcon.png",
    "128": "rmpIcon.png"
  },
  "content_scripts": [
    {
      "exclude_matches": [
        "https://app.banner.pdx.edu/assets/mobileAppPromo.png"
      ],
      "matches": [
        "https://app.banner.pdx.edu/StudentRegistrationSsb/ssb/classRegistration/classRegistration",
        "https://app.banner.pdx.edu/StudentRegistrationSsb/ssb/classSearch/classSearch"
      ],
      "css": [
        "dist/css/tooltipster.bundle.css"
      ],
      "js": [
        "jquery.js",
        "dist/js/tooltipster.bundle.js",
        "rmp.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "background.js"
    ],
    "persistent": false
  }
}