UCSD Schedule to Calendar

UCSD Schedule to Calendar

Add your UCSD Schedule from WebReg to your own Calendar using a .ics file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UCSD Schedule to Calendar",
  "manifest_version": 2,
  "version": "0.0.0.8",
  "description": "Add your UCSD Schedule from WebReg to your own Calendar using a .ics file.",
  "browser_action": {
    "name": "Manipulate DOM",
    "icons": [
      "icon.png"
    ],
    "default_icon": "icon1.png",
    "default_popup": "popup.html",
    "default_title": "UCSD Schedule to Calendar"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-331.js",
        "background.js"
      ],
      "matches": [
        "https://act.ucsd.edu/webreg2/*"
      ]
    }
  ],
  "permissions": [
    "downloads",
    "clipboardWrite",
    "tabs",
    "storage"
  ],
  "content_security_policy": "script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'",
  "background": {
    "scripts": [
      "popup.js"
    ],
    "persistent": false
  }
}