ASU Professor Ratings

ASU Professor Ratings

See Rate My Professors ratings alongside a professor's name when searching for ASU courses.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ASU Professor Ratings",
  "short_name": "ASUProfessors",
  "description": "See Rate My Professors ratings alongside a professor's name when searching for ASU courses.",
  "version": "3.2.2",
  "icons": {
    "16": "images/logo16.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "notifications",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/jquery.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://webapp4.asu.edu/catalog/*"
      ],
      "css": [
        "css/content_script.css"
      ],
      "js": [
        "js/jquery.js",
        "js/content_script.js",
        "js/content_script_helper.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/callout.png",
    "images/loading.gif",
    "images/gold-star.png",
    "html/feedback.html",
    "html/table_header.html",
    "html/prof_rating.html",
    "js/content_script_helper.js"
  ],
  "browser_action": {
    "default_icon": "images/logo_no_plus48.png"
  }
}