ProgTest Themes

Theme manager for ProgTest

Apa itu ProgTest Themes?

ProgTest Themes adalah ekstensi Chrome yang dikembangkan oleh progtest-themes, dan fitur utamanya adalah "Theme manager for ProgTest".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi ProgTest Themes

Unduh file ekstensi ProgTest Themes dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama ProgTest Themes ProgTest Themes
ID eoofjghfpdplnjhbfflfnfogdjnedgjf
URL Resmi https://chromewebstore.google.com/detail/progtest-themes/eoofjghfpdplnjhbfflfnfogdjnedgjf
Deskripsi Theme manager for ProgTest
Ukuran File 470 KB
Jumlah Instalasi 373
Versi Saat Ini 1.2.0
Terakhir Diperbarui 2023-10-23
Tanggal Publikasi 2020-04-17
Penilaian 5.00/5 Total 19 Penilaian
Pengembang progtest-themes
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/keombre/progtest-theme
URL Halaman Bantuan https://github.com/keombre/progtest-theme/issues
URL Halaman Kebijakan Privasi https://github.com/keombre/progtest-theme/blob/stable/privacy_policy.md
Bahasa yang Didukung 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"
    }
}