PassPlus

PassPlus

A tool that integrates PolyRating scores for Cal Poly professors into on PASS.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PassPlus",
  "version": "2.0.6",
  "manifest_version": 2,
  "description": "A tool that integrates PolyRating scores for Cal Poly professors into on PASS.",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon-16.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://pass.calpoly.edu/main.html"
      ],
      "js": [
        "lib/jquery-2.1.4.min.js",
        "scripts/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "background",
    "webRequest",
    "*://*.polyratings.com/",
    "storage"
  ]
}