uWaterloo Schedule Exporter
Export your University of Waterloo class schedule directly from Quest.
Was ist uWaterloo Schedule Exporter?
uWaterloo Schedule Exporter ist eine Chrome-Erweiterung, die von Xierumeng entwickelt wurde, und ihr Hauptmerkmal ist "Export your University of Waterloo class schedule directly from Quest.".
Erweiterungsscreenshots
uWaterloo Schedule Exporter-Erweiterungs-CRX-Datei herunterladen
Laden Sie uWaterloo Schedule Exporter-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
NEW INSTRUCTIONS 2021-08-27: Go to **Class Schedule**, select the term, then select **Weekly Calendar View** and return to **List View**. Switching back and forth is required to load the document so the extension can recognize this event.
This is a fork from the original author's project (Baraa Hamodi). I (Xierumeng) have permission to modify and publish their work. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kfdoehlfchipdmgngnabhaaggdmodgdk |
| Offizielle URL | https://chromewebstore.google.com/detail/uwaterloo-schedule-export/kfdoehlfchipdmgngnabhaaggdmodgdk |
| Beschreibung | Export your University of Waterloo class schedule directly from Quest. |
| Dateigröße | 290 KB |
| Installationsanzahl | 144 |
| Aktuelle Version | 1.9 |
| Letztes Update | 2021-08-27 |
| Veröffentlichungsdatum | 2018-10-27 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Xierumeng |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/Xierumeng/uwaterloo-schedule-exporter |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "uWaterloo Schedule Exporter",
"version": "1.9",
"description": "Export your University of Waterloo class schedule directly from Quest.",
"icons": {
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/quest.pecs.uwaterloo.ca\/*"
],
"all_frames": true,
"js": [
"jquery-2.2.3.min.js",
"moment-with-locales.min.js",
"main.js"
]
}
]
} | |