UCI GPA AND RMP

UCI GPA AND RMP

See all GPA's and Rate My Professor Details on the UCI Schedule of Courses Website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UCI GPA AND RMP",
  "description": "See all GPA's and Rate My Professor Details on the UCI Schedule of Courses Website",
  "version": "2.1",
  "manifest_version": 2,
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistence": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.reg.uci.edu/perl/WebSoc",
        "https://*.ratemyprofessors.com/search*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "data_new.json",
    "data.json"
  ]
}