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
公式URL 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
Eメール [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"
            ]
        }
    ]
}