ProgTest Themes

Theme manager for ProgTest

Cos'è ProgTest Themes?

ProgTest Themes è un'estensione di Chrome sviluppata da progtest-themes, e la sua funzione principale è "Theme manager for ProgTest".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ProgTest Themes

Scarica i file di estensione ProgTest Themes in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome ProgTest Themes ProgTest Themes
ID eoofjghfpdplnjhbfflfnfogdjnedgjf
URL Ufficiale https://chromewebstore.google.com/detail/progtest-themes/eoofjghfpdplnjhbfflfnfogdjnedgjf
Descrizione Theme manager for ProgTest
Dimensione del File 470 KB
Conteggio Installazioni 373
Versione Corrente 1.2.0
Ultimo Aggiornamento 2023-10-23
Data di Pubblicazione 2020-04-17
Valutazione 5.00/5 Totale 19 Valutazioni
Sviluppatore progtest-themes
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/keombre/progtest-theme
URL della Pagina di Aiuto https://github.com/keombre/progtest-theme/issues
URL della Pagina della Politica sulla Privacy https://github.com/keombre/progtest-theme/blob/stable/privacy_policy.md
Lingue Supportate 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"
    }
}