ProgTest Themes

Theme manager for ProgTest

ProgTest Themesとは何ですか?

ProgTest Themesはprogtest-themesによって開発されたChromeの拡張機能で、その主な機能は「Theme manager for ProgTest」です。

拡張機能のスクリーンショット

screenshot

ProgTest Themes拡張機能のCRXファイルをダウンロード

ProgTest Themes拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 ProgTest Themes ProgTest Themes
ID eoofjghfpdplnjhbfflfnfogdjnedgjf
公式URL https://chromewebstore.google.com/detail/progtest-themes/eoofjghfpdplnjhbfflfnfogdjnedgjf
説明 Theme manager for ProgTest
ファイルサイズ 470 KB
インストール数 373
現在のバージョン 1.2.0
最終更新日 2023-10-23
公開日 2020-04-17
評価 5.00/5 合計 19 レビュー
開発者 progtest-themes
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/keombre/progtest-theme
ヘルプページのURL https://github.com/keombre/progtest-theme/issues
プライバシーポリシーページのURL https://github.com/keombre/progtest-theme/blob/stable/privacy_policy.md
対応言語 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"
    }
}