CF-Predictor

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

Wat is CF-Predictor?

CF-Predictor is een Chrome-extensie ontwikkeld door Wsl_F, en de belangrijkste functie is "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie CF-Predictor

Download CF-Predictor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam CF-Predictor CF-Predictor
ID ocfloejijfhhkkdmheodbaanephbnfhn
Officiële URL https://chromewebstore.google.com/detail/cf-predictor/ocfloejijfhhkkdmheodbaanephbnfhn
Beschrijving This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.
Bestandsgrootte 84.96 KB
Aantal Installaties 51,012
Huidige Versie 1.3.2
Laatst Bijgewerkt 2022-11-28
Publicatiedatum 2020-06-16
Beoordeling 4.53/5 Totaal 146 Beoordelingen
Ontwikkelaar Wsl_F
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://cf-predictor.wasylf.xyz/
Help Pagina-URL https://codeforces.com/blog/entry/50411?locale=en
Ondersteunde Talen 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*"
            ]
        }
    ]
}