BYUI Professor Ratings

BYUI Professor Ratings

View RMP professor ratings on the BYUI registration page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "BYUI Professor Ratings",
  "short_name": "BYUI RMP",
  "version": "1.0.2",
  "description": "View RMP professor ratings on the BYUI registration page",
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "host_permissions": [
    "https://search-production.ratemyprofessors.com/*",
    "https://www.ratemyprofessors.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://my.byui.edu/ICS*",
        "https://student.byui.edu/ICS*"
      ],
      "js": [
        "registration/index.js"
      ],
      "css": [
        "registration/main.css"
      ]
    }
  ],
  "background": {
    "service_worker": "data-processing/fetcher.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "registration/index.js",
        "registration/byui_rmp.js",
        "data-processing/professorData.js"
      ],
      "matches": [
        "https://my.byui.edu/*",
        "https://student.byui.edu/*"
      ]
    }
  ],
  "action": {
    "default_icon": "img/icon128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}