Badger Chrome

Badger Chrome

Provides a way to view the RateMyProfessor statistics of professors when in the myUW student center.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Badger Chrome",
  "version": "1.3.7",
  "description": "Provides a way to view the RateMyProfessor statistics of professors when in the myUW student center.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "Badger Chrome",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "https://portal.sis.wisc.edu/*",
    "http://portal.sis.wisc.edu/*",
    "*://*.portal.sis.wisc.edu/*",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistant": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.portal.sis.wisc.edu/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}