CF-Predictor
This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.
Co je CF-Predictor?
CF-Predictor je rozšíření Chrome vyvinuté Wsl_F, a jeho hlavní funkcí je „This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření CF-Predictor
Stáhněte si soubory rozšíření CF-Predictor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | CF-Predictor |
ID | ocfloejijfhhkkdmheodbaanephbnfhn |
Oficiální URL | https://chromewebstore.google.com/detail/cf-predictor/ocfloejijfhhkkdmheodbaanephbnfhn |
Popis | This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest. |
Velikost souboru | 84.96 KB |
Počet instalací | 51,012 |
Aktuální Verze | 1.3.2 |
Poslední Aktualizace | 2022-11-28 |
Datum Vydání | 2020-06-16 |
Hodnocení | 4.53/5 Celkem 146 Hodnocení |
Vývojář | Wsl_F |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://cf-predictor.wasylf.xyz/ |
URL Stránky Nápovědy | https://codeforces.com/blog/entry/50411?locale=en |
Podporované Jazyky | 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*" ] } ] } |