CityU Quick Course Adder

To help you fill the CRNs quickly.

Что такое CityU Quick Course Adder?

CityU Quick Course Adder - это расширение Chrome, разработанное h.mattjunk, и его основная функция - "To help you fill the CRNs quickly.".

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

screenshot

Скачать файл CRX расширения CityU Quick Course Adder

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

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

                        The CityU Quick Course Adder is a helpful Chrome extension that makes entering CRNs faster. You just preload your CRNs, and the extension will automatically instantly put them on the 'Add or Drop Classes' page for you. It's a real time-saver! 

This is an updated version, building on the original 2016 version by Sam (ideati.me), which is no longer available.                    

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

Название CityU Quick Course Adder CityU Quick Course Adder
ID ailiklnkhplhpoeakbpcgomfdglmojbh
Официальный URL https://chromewebstore.google.com/detail/cityu-quick-course-adder/ailiklnkhplhpoeakbpcgomfdglmojbh
Описание To help you fill the CRNs quickly.
Размер файла 34.91 KB
Количество установок 459
Текущая Версия 1.0
Последнее Обновление 2023-09-06
Дата публикации 2023-09-06
Рейтинг 5.00/5 Всего 1 оценок
Разработчик h.mattjunk
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension
URL страницы помощи https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension/wiki/How-To-Use%3F
URL страницы политики конфиденциальности https://github.com/H11Maitree/CityU-Course-Adder-Chorme-Extension/wiki/Privacy-Policy
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CityU Quick Course Adder",
    "description": "To help you fill the CRNs quickly.",
    "version": "1.0",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/banweb.cityu.edu.hk\/*",
                "http:\/\/banweb.cityu.edu.hk\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "include_globs": [
                "*bwskfreg.P_AltPin*"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}