ProgTest Themes

Theme manager for ProgTest

Что такое ProgTest Themes?

ProgTest Themes - это расширение Chrome, разработанное progtest-themes, и его основная функция - "Theme manager for ProgTest".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения ProgTest Themes

Скачайте файлы расширений 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
Электронная почта [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"
    }
}