KPI scedule fixer

The extension is designed to fix KPI elective subjects problem by cleaning the scedule from unused subjects

Что такое KPI scedule fixer?

KPI scedule fixer - это расширение Chrome, разработанное maksterekhov1704, и его основная функция - "The extension is designed to fix KPI elective subjects problem by cleaning the scedule from unused subjects".

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

screenshot
screenshot

Скачать файл CRX расширения KPI scedule fixer

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

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

                        Данное расширение создано специально для rozklad.kpi.ua и служит для очистки расписания от неиспользуемых выборных предметов                    

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

Название KPI scedule fixer KPI scedule fixer
ID eghemfbcldijcjjhfocnaplahkpkaflh
Официальный URL https://chromewebstore.google.com/detail/kpi-scedule-fixer/eghemfbcldijcjjhfocnaplahkpkaflh
Описание The extension is designed to fix KPI elective subjects problem by cleaning the scedule from unused subjects
Размер файла 10.59 KB
Количество установок 88
Текущая Версия 1.1
Последнее Обновление 2021-09-01
Дата публикации 2021-08-31
Рейтинг 5.00/5 Всего 1 оценок
Разработчик maksterekhov1704
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.1",
    "name": "KPI scedule fixer",
    "description": "The extension is designed to fix KPI elective subjects problem by cleaning the scedule from unused subjects",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.rozklad.kpi.ua\/*"
            ],
            "js": [
                "KPI_Scedule_fixer.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon-16.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_title": "KPI Scedule fixer",
        "default_icon": "icon-128.png",
        "default_popup": "popup.html"
    }
}