WURatings

WURatings

View ratings from RateMyProfessors.com directly on the WUSTL course listings page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WURatings",
  "version": "1.0.6",
  "description": "View ratings from RateMyProfessors.com directly on the WUSTL course listings page.",
  "author": "Daniel Ni",
  "background": {
    "scripts": [
      "jquery-2.1.3.min.js",
      "ratingsEvents.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://acadinfo.wustl.edu/CourseListings/Semester/Listing.aspx",
        "https://courses.wustl.edu/Semester/Listing.aspx"
      ],
      "css": [
        "ratings.css"
      ],
      "js": [
        "jquery-2.1.3.min.js",
        "ratingsContent.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "http://www.ratemyprofessors.com/search.jsp*"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  }
}