Five Point Oh - A WebReg Extension

Five Point Oh - A WebReg Extension

Search RateMyProfessors directly from Rutgers course websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Five Point Oh - A WebReg Extension",
  "description": "Search RateMyProfessors directly from Rutgers course websites",
  "icons": {
    "128": "logo.png"
  },
  "version": "1.2.0.3",
  "permissions": [
    "*://sims.rutgers.edu/*",
    "*://sis.rutgers.edu/*",
    "*://www.ratemyprofessors.com/*",
    "*://raritan.herokuapp.com/*",
    "*://www.apis.google.com/*",
    "identity",
    "identity.email"
  ],
  "content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "*://sims.rutgers.edu/*",
        "*://sis.rutgers.edu/*"
      ],
      "css": [
        "stylesheet.css"
      ],
      "js": [
        "jquery-2.1.3.min.js",
        "contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "jquery-2.1.3.min.js",
      "eventPage.js",
      "gapi-client.js"
    ],
    "persistent": false
  },
  "oauth2": {
    "client_id": "392198836218-3io6qcpglqob3fkpga9jk7cmqd3vdvgj.apps.googleusercontent.com",
    "scopes": [
      "https://apis.google.com/js/client.js?onload=callbackFunction"
    ]
  },
  "browser_action": {
    "default_icon": "logo.png",
    "default_popup": "popup.html"
  }
}