Codeforces++

Codeforces extension pack

Что такое Codeforces++?

Codeforces++ - это расширение Chrome, разработанное Leonardo Riether, и его основная функция - "Codeforces extension pack".

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

screenshot
screenshot
screenshot
screenshot

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

Скачайте файлы расширений Codeforces++ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Ever wanted Codeforces to have handy shortcuts, auto-updating standings, problem tags that you can hide/show on demand, better site navigation, a dark theme, or all of the above? These and many more features are available in Codeforces++! This extension is open-source and hosted at GitHub https://github.com/LeoRiether/CodeforcesPP                    

Основная информация о расширении

Название Codeforces++ Codeforces++
ID ehbcfilpfnlahficlpimomapmbccieoi
Официальный URL https://chromewebstore.google.com/detail/codeforces++/ehbcfilpfnlahficlpimomapmbccieoi
Описание Codeforces extension pack
Размер файла 28.61 KB
Количество установок 3,692
Текущая Версия 2.4.0
Последнее Обновление 2023-02-22
Дата публикации 2020-05-20
Рейтинг 4.82/5 Всего 17 оценок
Разработчик Leonardo Riether
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/LeoRiether/CodeforcesPP
URL страницы помощи https://github.com/LeoRiether/CodeforcesPP/issues/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codeforces++",
    "description": "Codeforces extension pack",
    "version": "2.4.0",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "*:\/\/codeforces.com\/*",
        "http:\/\/fonts.googleapis.com\/*",
        "https:\/\/fonts.googleapis.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/codeforces.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "contentScript.js"
            ],
            "css": [
                "common.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "*.js"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Codeforces++"
    },
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    }
}