RateMySunDevil

RateMySunDevil

Pull ratings from ratemyprofessors.com and show directly in MyASU class search.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "RateMySunDevil",
  "description": "Pull ratings from ratemyprofessors.com and show directly in MyASU class search.",
  "version": "0.6",
  "browser_action": {
    "default_icon": "img/rmsdicon.png",
    "default_title": "RateMySunDevil!",
    "default_popup": "reviewPopup.html"
  },
  "icons": {
    "16": "img/rmsdicon.png",
    "48": "img/rmsdicon.png",
    "128": "img/rmsdicon.png"
  },
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/",
    "http://www.ratemyprofessors.com/*",
    "https://webapp4.asu.edu/catalog*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.asu.edu/catalog/classlist*"
      ],
      "js": [
        "jquery/jquery.js",
        "contentScript.js",
        "jquery/jquery-ui.min.js"
      ],
      "css": [
        "jquery/jquery-ui.min.css",
        "contentCss.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery/jquery.js",
      "eventScript.js"
    ],
    "persistent": false
  }
}