uWaterloo Schedule Exporter
Export your University of Waterloo class schedule directly from Quest.
Что такое uWaterloo Schedule Exporter?
uWaterloo Schedule Exporter - это расширение Chrome, разработанное Xierumeng, и его основная функция - "Export your University of Waterloo class schedule directly from Quest.".
Снимки экрана расширения
Скачать файл CRX расширения uWaterloo Schedule Exporter
Скачайте файлы расширений uWaterloo Schedule Exporter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | kfdoehlfchipdmgngnabhaaggdmodgdk |
| Официальный URL | https://chromewebstore.google.com/detail/uwaterloo-schedule-export/kfdoehlfchipdmgngnabhaaggdmodgdk |
| Описание | Export your University of Waterloo class schedule directly from Quest. |
| Размер файла | 290 KB |
| Количество установок | 144 |
| Текущая Версия | 1.9 |
| Последнее Обновление | 2021-08-27 |
| Дата публикации | 2018-10-27 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Xierumeng |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/Xierumeng/uwaterloo-schedule-exporter |
| Поддерживаемые языки | 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"
]
}
]
} | |