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*"
            ]
        }
    ]
}