CF-Predictor

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

Vad är CF-Predictor?

CF-Predictor är en Chrome-tillägg utvecklad av Wsl_F, och dess huvudfunktion är "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.".

Tilläggsskärmbilder

screenshot

Ladda ner CF-Predictor-förlängningens CRX-fil

Ladda ner CF-Predictor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn CF-Predictor CF-Predictor
ID ocfloejijfhhkkdmheodbaanephbnfhn
Officiell webbadress https://chromewebstore.google.com/detail/cf-predictor/ocfloejijfhhkkdmheodbaanephbnfhn
Beskrivning This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.
Filstorlek 84.96 KB
Antal Installationer 51,012
Aktuell Version 1.3.2
Senast Uppdaterad 2022-11-28
Publiceringsdatum 2020-06-16
Betyg 4.53/5 Totalt 146 Betyg
Utvecklare Wsl_F
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://cf-predictor.wasylf.xyz/
Hjälpsida URL https://codeforces.com/blog/entry/50411?locale=en
Stödda Språk 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*"
            ]
        }
    ]
}