Get class schedule from webreg

This extension will download the class schedule in ics format.

Get class schedule from webregとは何ですか?

Get class schedule from webregはUnknownによって開発されたChromeの拡張機能で、その主な機能は「This extension will download the class schedule in ics format.」です。

拡張機能のスクリーンショット

screenshot

Get class schedule from webreg拡張機能のCRXファイルをダウンロード

Get class schedule from webreg拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Note: this extension is for UCSD students only!

This chrome extension enables you to generate a calendar file of your class schedule on webreg. The file is compatible with the common calendar software: google calendar, apple calendar, etc.

You need to log in webreg before you can use it.

Please help me improve it. https://github.com/plrectco/GetCalendar                    

拡張機能の基本情報

名前 Get class schedule from webreg Get class schedule from webreg
ID jegpbhkmochlenmlhalmgbdcdkbgfhab
公式URL https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab
説明 This extension will download the class schedule in ics format.
ファイルサイズ 18.21 KB
インストール数 13
現在のバージョン 1.0
最終更新日 2018-01-17
公開日 2018-01-16
開発者 Unknown
支払い方法 free
拡張機能のウェブサイト https://github.com/plrectco/GetCalendar
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Get class schedule from webreg",
    "description": "This extension will download the class schedule in ics format.",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_title": "Download the class schedule",
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/act.ucsd.edu\/*"
            ],
            "js": [
                "ics.deps.min.js",
                "ics1.js",
                "script.js"
            ]
        }
    ]
}