Get class schedule from webreg

This extension will download the class schedule in ics format.

Vad är Get class schedule from webreg?

Get class schedule from webreg är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This extension will download the class schedule in ics format.".

Tilläggsskärmbilder

screenshot

Ladda ner Get class schedule from webreg-förlängningens CRX-fil

Ladda ner Get class schedule from webreg-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Get class schedule from webreg Get class schedule from webreg
ID jegpbhkmochlenmlhalmgbdcdkbgfhab
Officiell webbadress https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab
Beskrivning This extension will download the class schedule in ics format.
Filstorlek 18.21 KB
Antal Installationer 13
Aktuell Version 1.0
Senast Uppdaterad 2018-01-17
Publiceringsdatum 2018-01-16
Utvecklare Unknown
Betalningssätt free
Tilläggswebbplats https://github.com/plrectco/GetCalendar
Stödda Språk 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"
            ]
        }
    ]
}