Export your WebReg schedule to your calendars in one click!
Highlights:
- Adds your classes as recurring events
- Adds your finals as one time events
- Importable into calendar apps like Google Calendar, Outlook, etc.
- Tested on UCSD WebReg schedules
- Usage instructions below!
- Copy the entire code blurb below & add it as a new bookmark:
Ctrl+D
orโ+D
, click "More...", then paste the blurb in as the URL:javascript:(function(){const calendarize=document.createElement('script');calendarize.src='https://adoryvo.github.io/calendarize-webreg/calendarize.min.js';document.body.appendChild(calendarize);})()
- Visit your WebReg page & click the bookmark to download your schedule as a calendar file (.ics)
(Ctrl/โ+Shift+B
to toggle bookmarks bar) - Import the calendar file into your Google Calendar here. Make sure to check your intended Google Account in the top right!
- Double-check that the calendar events created match the times on WebReg!
- If there are any inconsistencies or errors, fill out the feedback form. I will try to address them ASAP!
- Download the extension from the Chrome Web Store here
- If your browser does not support the Chrome Web Store, follow these instructions to download the extension:
- Download
calendarize-webreg-chrome.zip
from the latest release - Extract (AKA unzip) the downloaded zip folder (via right click >
Extract All...
) - Delete the
.zip
version and move your unzipped folder into a permanent, safe place - In your browser, click the extensions icon (should look like a puzzle piece ๐งฉ) and click
Manage extensions
- Toggle
Developer Mode
on - Click
Load Unpacked
and choose your unzipped folder from earlierโญ๏ธ Make sure you keep the extension folder in a permanent, safe place (don't delete or move the folder after loading it)
- Download
- Head to your WebReg page and click on the extension (you may have to dropdown the extensions menu ๐งฉ). Voilร , your schedule is downloaded! ๐
- Import the calendar file into your Google Calendar here. Make sure to check your intended Google Account in the top right!
- Double-check that the calendar events created match the times on WebReg!
- If there are any inconsistencies or errors, fill out the feedback form. I will try to address them ASAP!
If you're not located in the same time zone as your school, change the time zone of your calendar to match before importing your calendar file. After importing, you can change your time zone back to your own and the events will shift to your time zone accordingly.
For Google Calendar, this can be done in Settings > General > Time zone.
Otherwise, here are steps for Apple Calendar and
here are steps for Outlook.
For UCSD students, the time zone should be (GMT-07:00) Pacific Time - Los Angeles.
When you click the bookmark or extension, your browser runs a script (AKA a program) that takes the text in your WebReg table, organizes it into your schedule information, and creates a .ics
calendar file.
This type of script is called a bookmarklet, an obscure technology that I found fitting to add accessibility for most browsers. You may take a look at some other cool bookmarklets here.
โญ๏ธ Update: To further improve accessibility for browsers not supporting bookmarklets, a browser extension option has been added!
// This code will be executed upon clicking the bookmark
javascript:(function () {
// Fetch the script used to scrape & parse schedule information from the web page
const calendarize = document.createElement('script')
calendarize.src ='https://adoryvo.github.io/calendarize-webreg/calendarize.min.js'
// Add the script to the current page, causing it to run!
document.body.appendChild(calendarize)
})()
The bookmark code blurb, formatted
If you have any concerns about privacy, the program does not collect or store any of your information (you may verify this with the source code).
- UCSD Rocket Dev Team's web-based WebReg Export App, which uses OCR image scanning to parse your WebReg schedule
- OTApps' Chrome Extension tool
- Isaiah Dailey's command line tool, Schtoics
- Feedback & Bug Report Form
Source code | Uses ics.js for .ics generation
Created by Adory Vo with contributions from Rebecca Chen