KPI scedule fixer

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

Co to jest KPI scedule fixer?

KPI scedule fixer to rozszerzenie Chrome opracowane przez maksterekhov1704, a jego główną funkcją jest „The extension is designed to fix KPI elective subjects problem by cleaning the scedule from unused subjects”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia KPI scedule fixer

Pobierz pliki rozszerzeń KPI scedule fixer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa KPI scedule fixer KPI scedule fixer
ID eghemfbcldijcjjhfocnaplahkpkaflh
Oficjalny URL https://chromewebstore.google.com/detail/kpi-scedule-fixer/eghemfbcldijcjjhfocnaplahkpkaflh
Opis The extension is designed to fix KPI elective subjects problem by cleaning the scedule from unused subjects
Rozmiar pliku 10.59 KB
Liczba instalacji 88
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2021-09-01
Data Publikacji 2021-08-31
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper maksterekhov1704
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}