Waitlist of Lucidity

Shows waitlist sizes for UT Austin Registration

Что такое Waitlist of Lucidity?

Waitlist of Lucidity - это расширение Chrome, разработанное Unknown, и его основная функция - "Shows waitlist sizes for UT Austin Registration".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Waitlist of Lucidity

Скачайте файлы расширений Waitlist of Lucidity в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Waitlists are now also displayed directly on the Course Schedule.


Provides a crowdsourced method for students at UT Austin to see the size of waitlisted classes. Visiting "See my waitlists" automatically adds the sizes of a user's waitlists to a Database. Clicking on "See all waitlists" displays all collected waitlist sizes. For best user experience, disable scroll feature on UT Registration Plus.                    

Основная информация о расширении

Название Waitlist of Lucidity Waitlist of Lucidity
ID mcnochpjjjljamhiigpkokjcfmmihhic
Официальный URL https://chromewebstore.google.com/detail/waitlist-of-lucidity/mcnochpjjjljamhiigpkokjcfmmihhic
Описание Shows waitlist sizes for UT Austin Registration
Размер файла 6.92 KB
Количество установок 141
Текущая Версия 1.204
Последнее Обновление 2020-05-05
Дата публикации 2020-05-04
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Waitlist of Lucidity",
    "description": "Shows waitlist sizes for UT Austin Registration",
    "version": "1.204",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/utdirect.utexas.edu\/registrar\/waitlist\/wl_see_my_waitlists.WBX\/*"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/utdirect.utexas.edu\/apps\/registrar\/course_schedule\/*"
            ],
            "js": [
                "display.js"
            ]
        }
    ]
}