Get class schedule from webreg
This extension will download the class schedule in ics format.
Cos'è Get class schedule from webreg?
Get class schedule from webreg è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension will download the class schedule in ics format.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Get class schedule from webreg
Scarica i file di estensione Get class schedule from webreg in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | jegpbhkmochlenmlhalmgbdcdkbgfhab |
| URL Ufficiale | https://chromewebstore.google.com/detail/get-class-schedule-from-w/jegpbhkmochlenmlhalmgbdcdkbgfhab |
| Descrizione | This extension will download the class schedule in ics format. |
| Dimensione del File | 18.21 KB |
| Conteggio Installazioni | 13 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2018-01-17 |
| Data di Pubblicazione | 2018-01-16 |
| Sviluppatore | Unknown |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/plrectco/GetCalendar |
| Lingue Supportate | 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"
]
}
]
} | |