CF-Predictor

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

Was ist CF-Predictor?

CF-Predictor ist eine Chrome-Erweiterung, die von Wsl_F entwickelt wurde, und ihr Hauptmerkmal ist "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.".

Erweiterungsscreenshots

screenshot

CF-Predictor-Erweiterungs-CRX-Datei herunterladen

Laden Sie CF-Predictor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name CF-Predictor CF-Predictor
ID ocfloejijfhhkkdmheodbaanephbnfhn
Offizielle URL https://chromewebstore.google.com/detail/cf-predictor/ocfloejijfhhkkdmheodbaanephbnfhn
Beschreibung This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.
Dateigröße 84.96 KB
Installationsanzahl 51,012
Aktuelle Version 1.3.2
Letztes Update 2022-11-28
Veröffentlichungsdatum 2020-06-16
Bewertung 4.53/5 Insgesamt 146 Bewertungen
Entwickler Wsl_F
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://cf-predictor.wasylf.xyz/
Hilfeseite URL https://codeforces.com/blog/entry/50411?locale=en
Unterstützte Sprachen 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*"
            ]
        }
    ]
}