Berkeley Schedule Exporter

Berkeley Schedule Exporter

Export your Berkeley class schedule!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Berkeley Schedule Exporter",
  "version": "1.2.4",
  "description": "Export your Berkeley class schedule!",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "32": "icons/icon-32.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png"
    }
  },
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "declarativeContent",
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "src/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/export.js",
        "src/icsjs/ics.deps.min.js"
      ],
      "matches": [
        "https://berkeley.collegescheduler.com/*"
      ]
    }
  ]
}