CF-Predictor

This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.

Что такое CF-Predictor?

CF-Predictor - это расширение Chrome, разработанное Wsl_F, и его основная функция - "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.".

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

screenshot

Скачать файл CRX расширения CF-Predictor

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

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

                        A huge number of your nerve cells die every time when you wait for a rating update on Codeforces. Stop this! From now you could use this extension, it partly modifies the contest standings page and shows approximate rating changes for every contestant.                    

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

Название CF-Predictor CF-Predictor
ID ocfloejijfhhkkdmheodbaanephbnfhn
Официальный URL https://chromewebstore.google.com/detail/cf-predictor/ocfloejijfhhkkdmheodbaanephbnfhn
Описание This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.
Размер файла 84.96 KB
Количество установок 51,012
Текущая Версия 1.3.2
Последнее Обновление 2022-11-28
Дата публикации 2020-06-16
Рейтинг 4.53/5 Всего 146 оценок
Разработчик Wsl_F
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://cf-predictor.wasylf.xyz/
URL страницы помощи https://codeforces.com/blog/entry/50411?locale=en
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CF-Predictor",
    "short_name": "CF-Predictor",
    "version": "1.3.2",
    "description": "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.",
    "manifest_version": 3,
    "icons": {
        "48": "static\/icon48.png",
        "64": "static\/icon64.png",
        "128": "static\/icon128.png"
    },
    "action": {
        "default_icon": {
            "48": "static\/icon48.png",
            "64": "static\/icon64.png",
            "128": "static\/icon128.png"
        },
        "default_title": "CF-Predictor",
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/cf-predictor.wasylf.xyz\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "third_party\/jquery.js",
                "showDeltas.js"
            ],
            "matches": [
                "http:\/\/codeforces.com\/contest\/*\/standings*",
                "https:\/\/codeforces.com\/contest\/*\/standings*"
            ]
        }
    ]
}