ProgTest Themes

Theme manager for ProgTest

ProgTest Themes là gì?

ProgTest Themes là một tiện ích mở rộng Chrome được phát triển bởi progtest-themes, và tính năng chính của nó là "Theme manager for ProgTest".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ProgTest Themes

Tải xuống các tệp mở rộng ProgTest Themes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ProgTest Themes ProgTest Themes
ID eoofjghfpdplnjhbfflfnfogdjnedgjf
URL Chính Thức https://chromewebstore.google.com/detail/progtest-themes/eoofjghfpdplnjhbfflfnfogdjnedgjf
Mô tả Theme manager for ProgTest
Kích Thước Tệp 470 KB
Số Lần Cài Đặt 373
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2023-10-23
Ngày Phát Hành 2020-04-17
Đánh Giá 5.00/5 Tổng số 19 Đánh Giá
Nhà Phát Triển progtest-themes
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/keombre/progtest-theme
URL Trang Trợ Giúp https://github.com/keombre/progtest-theme/issues
URL Trang Chính Sách Bảo Mật https://github.com/keombre/progtest-theme/blob/stable/privacy_policy.md
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}