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"
            ]
        }
    ]
}