SSC Exam iCal Generator

SSC Exam iCal Generator

Generate iCal files from the UBC SSC exam page

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SSC Exam iCal Generator",
  "author": "Jasper Chan",
  "description": "Generate iCal files from the UBC SSC exam page",
  "homepage_url": "https://github.com/Gigahawk/ssc-exam-ical-generator",
  "version": "0.0.2",
  "permissions": [
    "downloads",
    "*://ssc.adm.ubc.ca/*ExamSchedule"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://ssc.adm.ubc.ca/*ExamSchedule"
      ],
      "js": [
        "ics.js/ics.deps.min.js",
        "ics.js/ics.js",
        "main.js"
      ],
      "all_frames": true
    }
  ]
}