RMP Schedule Builder Links

RMP Schedule Builder Links

Get links to the ratemyprofessor pages for the professor(s) of each class!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RMP Schedule Builder Links",
  "description": "Get links to the ratemyprofessor pages for the professor(s) of each class!",
  "version": "0.1",
  "icons": {
    "16": "Icon_16.png",
    "48": "Icon_48.png",
    "128": "Icon_128.png"
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://my.ucdavis.edu/schedulebuilder/index.cfm*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "test_file.txt"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}