CF-Predictor

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

Qu'est-ce que CF-Predictor ?

CF-Predictor est une extension Chrome développée par Wsl_F, et sa fonction principale est "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension CF-Predictor

Téléchargez les fichiers d'extension CF-Predictor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom CF-Predictor CF-Predictor
ID ocfloejijfhhkkdmheodbaanephbnfhn
URL Officiel 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.
Taille du Fichier 84.96 KB
Nombre d'Installations 51,012
Version Actuelle 1.3.2
Dernière Mise à Jour 2022-11-28
Date de Publication 2020-06-16
Évaluation 4.53/5 Total 146 Évaluations
Développeur Wsl_F
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://cf-predictor.wasylf.xyz/
URL de la Page d'Aide https://codeforces.com/blog/entry/50411?locale=en
Langues Prises en Charge 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*"
            ]
        }
    ]
}