ProgTest Themes

Theme manager for ProgTest

Co to jest ProgTest Themes?

ProgTest Themes to rozszerzenie Chrome opracowane przez progtest-themes, a jego główną funkcją jest „Theme manager for ProgTest”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ProgTest Themes

Pobierz pliki rozszerzeń ProgTest Themes 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

                        This is theme manager for Progtest.
Not only does it change the overall design of Progtest, but it also adds useful features such as syntax highlighting or notifications.                    

Podstawowe informacje o rozszerzeniu

Nazwa ProgTest Themes ProgTest Themes
ID eoofjghfpdplnjhbfflfnfogdjnedgjf
Oficjalny URL https://chromewebstore.google.com/detail/progtest-themes/eoofjghfpdplnjhbfflfnfogdjnedgjf
Opis Theme manager for ProgTest
Rozmiar pliku 470 KB
Liczba instalacji 373
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2023-10-23
Data Publikacji 2020-04-17
Ocena 5.00/5 Łącznie 19 Oceny
Deweloper progtest-themes
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/keombre/progtest-theme
Adres URL Strony Pomocy https://github.com/keombre/progtest-theme/issues
Adres URL Strony Polityki Prywatności https://github.com/keombre/progtest-theme/blob/stable/privacy_policy.md
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ProgTest Themes",
    "version": "1.2.0",
    "description": "Theme manager for ProgTest",
    "manifest_version": 3,
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "content\/start.js",
                "content\/highlightjs\/highlight.min.js"
            ],
            "css": [
                "themes\/loading\/on.css"
            ],
            "matches": [
                "https:\/\/progtest.fit.cvut.cz\/*"
            ],
            "all_frames": true
        },
        {
            "run_at": "document_end",
            "js": [
                "content\/end.js"
            ],
            "matches": [
                "https:\/\/progtest.fit.cvut.cz\/*"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content\/loader.js"
            ],
            "matches": [
                "https:\/\/progtest.fit.cvut.cz\/*"
            ]
        },
        {
            "resources": [
                "themes\/*"
            ],
            "matches": [
                "https:\/\/progtest.fit.cvut.cz\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/progtest.fit.cvut.cz\/*",
        "https:\/\/courses.fit.cvut.cz\/data\/courses-all.json"
    ],
    "action": {
        "default_title": "",
        "default_icon": "icon.png",
        "default_popup": "settings\/index.html"
    },
    "icons": {
        "128": "icon.png"
    }
}