uWaterloo Schedule Exporter
Export your University of Waterloo class schedule directly from Quest.
Vad är uWaterloo Schedule Exporter?
uWaterloo Schedule Exporter är en Chrome-tillägg utvecklad av Xierumeng, och dess huvudfunktion är "Export your University of Waterloo class schedule directly from Quest.".
Tilläggsskärmbilder
Ladda ner uWaterloo Schedule Exporter-förlängningens CRX-fil
Ladda ner uWaterloo Schedule Exporter-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
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. Grundläggande Information om Tillägg
| Namn | |
| ID | kfdoehlfchipdmgngnabhaaggdmodgdk |
| Officiell webbadress | https://chromewebstore.google.com/detail/uwaterloo-schedule-export/kfdoehlfchipdmgngnabhaaggdmodgdk |
| Beskrivning | Export your University of Waterloo class schedule directly from Quest. |
| Filstorlek | 290 KB |
| Antal Installationer | 144 |
| Aktuell Version | 1.9 |
| Senast Uppdaterad | 2021-08-27 |
| Publiceringsdatum | 2018-10-27 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | Xierumeng |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/Xierumeng/uwaterloo-schedule-exporter |
| Stödda Språk | 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"
]
}
]
} | |