UW iCal

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

什麼是UW iCal?

UW iCal是由Kyle Yan開發的Chrome擴展程式,該擴展的主要功能是“This extension generates an iCal version of your schedule, right in MyUW.”。

下載UW iCal擴展crx文件

下載UW iCal擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 UW iCal UW iCal
ID jfiokfdebocaoojaaolgomidmkamfkod
官方網址 https://chrome.google.com/webstore/detail/uw-ical/jfiokfdebocaoojaaolgomidmkamfkod
簡介 This extension generates an iCal version of your schedule, right in MyUW.
檔案大小 78.28 KB
安裝次數 70
目前版本 1.5
更新時間 2017-09-15
上架時間 2017-09-15
評分 5.00/5 共 2 次評分
開發者 Kyle Yan
電子郵箱 [email protected]
付費類型 free
擴展官網 https://kaichengyan.github.io/uw-ical
支援的語言 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"
            ]
        }
    ]
}