CF-Predictor

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

What is CF-Predictor?

CF-Predictor is a Chrome extension developed by Wsl_F, and its main feature is "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.".

Extension Screenshots

screenshot

Download CF-Predictor Extension CRX File

Download CF-Predictor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name CF-Predictor CF-Predictor
ID ocfloejijfhhkkdmheodbaanephbnfhn
Official URL https://chromewebstore.google.com/detail/cf-predictor/ocfloejijfhhkkdmheodbaanephbnfhn
Description This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.
File Size 84.96 KB
Installation Count 51,012
Current Version 1.3.2
Last Updated 2022-11-28
Publish Date 2020-06-16
Rating 4.53/5 Total 146 Ratings
Developer Wsl_F
Email [email protected]
Payment Type free
Extension Website https://cf-predictor.wasylf.xyz/
Help Page URL https://codeforces.com/blog/entry/50411?locale=en
Supported Languages 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*"
            ]
        }
    ]
}