Webreg Course Info Extension

Displays information about professors and expected workload in webreg.

Что такое Webreg Course Info Extension?

Webreg Course Info Extension - это расширение Chrome, разработанное thepot8totheory, и его основная функция - "Displays information about professors and expected workload in webreg.".

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

screenshot

Скачать файл CRX расширения Webreg Course Info Extension

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

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

                        Easily check the ratings of your professors and courses on WebReg with this extension                    

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

Название Webreg Course Info Extension Webreg Course Info Extension
ID oicloanloffjnombnhhmplbienojjepd
Официальный URL https://chromewebstore.google.com/detail/webreg-course-info-extens/oicloanloffjnombnhhmplbienojjepd
Описание Displays information about professors and expected workload in webreg.
Размер файла 616 KB
Количество установок 166
Текущая Версия 1.1
Последнее Обновление 2023-11-06
Дата публикации 2023-09-20
Рейтинг 5.00/5 Всего 1 оценок
Разработчик thepot8totheory
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://www.freeprivacypolicy.com/live/2254530c-a605-462c-a2ba-9fcc2bdf2951
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Webreg Course Info Extension",
    "version": "1.1",
    "icons": {
        "128": "UCSD128.png"
    },
    "description": "Displays information about professors and expected workload in webreg.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/act.ucsd.edu\/webreg2\/*"
            ],
            "css": [
                "Data_Visual.css"
            ],
            "js": [
                "Prof-Info.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "capes_data.csv",
                "rmp_data_without_empty_lines.csv"
            ],
            "matches": [
                "https:\/\/act.ucsd.edu\/*"
            ]
        }
    ]
}