Get class schedule from webreg
This extension will download the class schedule in ics format.
Hvad er Get class schedule from webreg?
Get class schedule from webreg er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "This extension will download the class schedule in ics format.".
Udvidelsesskærmbilleder
Download Get class schedule from webreg-udvidelses-CRX-fil
Download Get class schedule from webreg-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Get class schedule from webreg |
ID | jegpbhkmochlenmlhalmgbdcdkbgfhab |
Officiel URL | https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab |
Beskrivelse | This extension will download the class schedule in ics format. |
Filstørrelse | 18.21 KB |
Antal Installationer | 13 |
Nuværende Version | 1.0 |
Senest Opdateret | 2018-01-17 |
Udgivelsesdato | 2018-01-16 |
Udvikler | Unknown |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/plrectco/GetCalendar |
Understøttede Sprog | 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" ] } ] } |