Get class schedule from webreg

This extension will download the class schedule in ics format.

Was ist Get class schedule from webreg?

Get class schedule from webreg ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension will download the class schedule in ics format.".

Erweiterungsscreenshots

screenshot

Get class schedule from webreg-Erweiterungs-CRX-Datei herunterladen

Laden Sie Get class schedule from webreg-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Get class schedule from webreg Get class schedule from webreg
ID jegpbhkmochlenmlhalmgbdcdkbgfhab
Offizielle URL https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab
Beschreibung This extension will download the class schedule in ics format.
Dateigröße 18.21 KB
Installationsanzahl 13
Aktuelle Version 1.0
Letztes Update 2018-01-17
Veröffentlichungsdatum 2018-01-16
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/plrectco/GetCalendar
Unterstützte Sprachen 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"
            ]
        }
    ]
}