GOLD Calendar
Easily add your academic schedule to your calendar program of choice!
What is GOLD Calendar?
GOLD Calendar is a Chrome extension developed by rt.waltman, and its main feature is "Easily add your academic schedule to your calendar program of choice!".
Extension Screenshots
Download GOLD Calendar Extension CRX File
Download GOLD Calendar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
GOLD Calendar adds a convenient 'Export Schedule' button to the 'My Class Schedule' page on GOLD. When clicked, a *.ics (iCalendar format) file containing your academic schedule will download. Import this *.ics file to your calendar of choice (such as Mac OSX Calendar or Google Calendar). Please report any issues or bugs that you may find, as I have had limited GOLD accounts to test with. Created By: Richard Waltman
Extension Basic Information
Name | |
ID | bcoocjebknnbkafliolenjhmgidfmhib |
Official URL | https://chromewebstore.google.com/detail/gold-calendar/bcoocjebknnbkafliolenjhmgidfmhib |
Description | Easily add your academic schedule to your calendar program of choice! |
File Size | 53.95 KB |
Installation Count | 74 |
Current Version | 1.11 |
Last Updated | 2016-01-03 |
Publish Date | 2016-01-03 |
Rating | 4.60/5 Total 5 Ratings |
Developer | rt.waltman |
Payment Type | free |
Extension Website | https://github.com/rtwaltman/GOLDCalendar |
Help Page URL | https://github.com/rtwaltman/GOLDCalendar |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GOLD Calendar", "version": "1.11", "author": "Richard Waltman", "description": "Easily add your academic schedule to your calendar program of choice!", "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": "images\/icon38.png", "default_popup": "popup.html", "default_title": "GOLD Calendar" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "downloads" ], "content_scripts": [ { "matches": [ "https:\/\/my.sa.ucsb.edu\/gold\/StudentSchedule.aspx" ], "js": [ "icsBuilder.js", "FileSaver.min.js", "course.js", "main.js" ], "css": [ "button.css" ] } ] } |