Examine source code of PUPSIS Schedule Exporter

Inspect and view changes in PUPSIS Schedule Exporter source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "PUPSIS Schedule Exporter",
  "author": "Kevin Christian Amparado",
  "version": "4.0.2.110",
  "icons": {
    "128": "web-icons/web-icon.png"
  },
  "description": "A web extension for converting PUPSIS schedule to ICalendar format (.ics), csv and json file",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://sis2.pup.edu.ph/student/schedule",
        "https://sis1.pup.edu.ph/student/schedule",
        "https://sis7.pup.edu.ph/student/schedule",
        "https://sis8.pup.edu.ph/student/schedule"
      ],
      "js": [
        "contentScript.js",
        "editSched.js"
      ]
    }
  ],
  "action": {
    "default_title": "PUPSIS Schedule Exporter",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "web-icons/web-icon.png"
    }
  },
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}