MSU Class Helper

MSU Class Helper

Your scheduling assistant.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MSU Class Helper",
  "version": "2.0",
  "description": "Your scheduling assistant.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "60": "icon60.png",
    "128": "icon128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://msuh.a2hosted.com/app/*"
  ],
  "content_scripts": [
    {
      "js": [
        "index.js"
      ],
      "css": [
        "index.css"
      ],
      "matches": [
        "https://student.msu.edu/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "util.js",
        "MGH.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "manifest_version": 3
}