NJIT Schedule Builder Profiles

This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.

Что такое NJIT Schedule Builder Profiles?

NJIT Schedule Builder Profiles - это расширение Chrome, разработанное ben.extensions, и его основная функция - "This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.".

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

screenshot

Скачать файл CRX расширения NJIT Schedule Builder Profiles

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

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

                        Schedule Builder Profiles allows the user to save plans on the schedule builder website for New Jersey Institute of Technology (NJIT). With this chrome extension installed, schedules can be stored and brought back at the click of a button. This allows multiple schedules to be planned in tandem, without the need to rebuild.
This extension was made by Benjamin Shuster, and is not supported by NJIT. Please do not contact NJIT for support.                    

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

Название NJIT Schedule Builder Profiles NJIT Schedule Builder Profiles
ID pmnpckcmdalibabddocfiabejkbmcanp
Официальный URL https://chromewebstore.google.com/detail/njit-schedule-builder-pro/pmnpckcmdalibabddocfiabejkbmcanp
Описание This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder.
Размер файла 59.87 KB
Количество установок 82
Текущая Версия 0.0.2
Последнее Обновление 2022-05-19
Дата публикации 2022-03-30
Рейтинг 5.00/5 Всего 1 оценок
Разработчик ben.extensions
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/bentzi-shuster/NJIT-Schedule-Builder-Profiles
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NJIT Schedule Builder Profiles",
    "manifest_version": 3,
    "version": "0.0.2",
    "permissions": [
        "storage",
        "tabs",
        "clipboardWrite"
    ],
    "description": "This extension allows you to create and manage your own schedule profiles for NJIT's schedule builder. ",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "\/popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/uisapppr3.njit.edu\/scbldr\/"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/128.png",
        "48": "images\/48.png",
        "16": "images\/16.png"
    }
}