UW Sched2Cal

UW Sched2Cal

A chrome extension built to help UW students export their schedule to their calender.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A chrome extension built to help UW students export their schedule to their calender.",
  "version": "1.0.0",
  "manifest_version": 3,
  "name": "UW Sched2Cal",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "logo-custom.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "downloads"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://my.uw.edu/*",
        "https://sdb.admin.uw.edu/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "logo-custom.png"
      ],
      "matches": []
    }
  ]
}