Get class schedule from webreg
This extension will download the class schedule in ics format.
Wat is Get class schedule from webreg?
Get class schedule from webreg is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension will download the class schedule in ics format.".
Extensie Screenshots
Download het CRX-bestand van de extensie Get class schedule from webreg
Download Get class schedule from webreg-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Get class schedule from webreg |
ID | jegpbhkmochlenmlhalmgbdcdkbgfhab |
Officiële URL | https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab |
Beschrijving | This extension will download the class schedule in ics format. |
Bestandsgrootte | 18.21 KB |
Aantal Installaties | 13 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2018-01-17 |
Publicatiedatum | 2018-01-16 |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Extensiewebsite | https://github.com/plrectco/GetCalendar |
Ondersteunde Talen | 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" ] } ] } |