TMCC Professor Ratings

TMCC Professor Ratings

Pulls professor profile ratings from Rate My Professors and shown on your MyTMCC course registration.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TMCC Professor Ratings",
  "description": "Pulls professor profile ratings from Rate My Professors and shown on your MyTMCC course registration.",
  "version": "1.0.9",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "author": "Rohman Sultan",
  "background": {
    "scripts": [
      "jquery-3.2.1.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://por.shr.nevada.edu/*"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "modal/js/tingle.js",
        "findProfs.js"
      ],
      "css": [
        "modal/css/tingle.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*.png"
  ],
  "permissions": [
    "https://www.ratemyprofessors.com/*"
  ]
}