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
官方網址 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
電子郵箱 [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"
    }
}