Spire Ratings Display

Spire Ratings Display

This extension displays the RateMyProfessor rating of a professor next to the professor name on Spire.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Spire Ratings Display",
  "version": "1.71.1",
  "background": {
    "scripts": [
      "jquery-3.3.1.min.js",
      "background.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.spire.umass.edu/*"
      ],
      "css": [
        "rmp.css"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "content.js"
      ]
    }
  ],
  "permissions": [
    "http://www.ratemyprofessors.com/*",
    "https://www.ratemyprofessors.com/*",
    "https://www.spire.com.umass.edu/*"
  ]
}