UW iCal

This extension generates an iCal version of your schedule, right in MyUW.

What is UW iCal?

UW iCal is a Chrome extension developed by Kyle Yan, and its main feature is "This extension generates an iCal version of your schedule, right in MyUW.".

Download UW iCal Extension CRX File

Download UW iCal 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

                        Export your UW schedule into an iCal file right inside MyUW. 
Open MyUW, and you will see a link "Export Schedule" in the upper right corner. An .ics file will be downloaded, and you can import this file to your calendar apps.                    

Extension Basic Information

Name UW iCal UW iCal
ID jfiokfdebocaoojaaolgomidmkamfkod
Official URL https://chrome.google.com/webstore/detail/uw-ical/jfiokfdebocaoojaaolgomidmkamfkod
Description This extension generates an iCal version of your schedule, right in MyUW.
File Size 78.28 KB
Installation Count 70
Current Version 1.5
Last Updated 2017-09-15
Publish Date 2017-09-15
Rating 5.00/5 Total 2 Ratings
Developer Kyle Yan
Email [email protected]
Payment Type free
Extension Website https://kaichengyan.github.io/uw-ical
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UW iCal",
    "description": "This extension generates an iCal version of your schedule, right in MyUW.",
    "version": "1.5",
    "author": "Kyle Yan",
    "browser_action": {
        "default_icon": {
            "128": "128.png",
            "48": "48.png",
            "16": "16.png"
        },
        "default_title": "UW iCal"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.uw.edu\/*",
                "http:\/\/my.uw.edu\/*"
            ],
            "js": [
                "ical.min.js",
                "FileSaver.min.js",
                "jquery-3.2.1.min.js",
                "myuw.js"
            ]
        }
    ]
}