CF-Predictor
This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.
Hvad er CF-Predictor?
CF-Predictor er en Chrome-udvidelse udviklet af Wsl_F, og dens hovedfunktion er "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.".
Udvidelsesskærmbilleder
Download CF-Predictor-udvidelses-CRX-fil
Download CF-Predictor-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | CF-Predictor |
ID | ocfloejijfhhkkdmheodbaanephbnfhn |
Officiel URL | https://chromewebstore.google.com/detail/cf-predictor/ocfloejijfhhkkdmheodbaanephbnfhn |
Beskrivelse | This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest. |
Filstørrelse | 84.96 KB |
Antal Installationer | 51,012 |
Nuværende Version | 1.3.2 |
Senest Opdateret | 2022-11-28 |
Udgivelsesdato | 2020-06-16 |
Bedømmelse | 4.53/5 Samlet 146 Bedømmelser |
Udvikler | Wsl_F |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://cf-predictor.wasylf.xyz/ |
Hjælpeside-URL | https://codeforces.com/blog/entry/50411?locale=en |
Understøttede Sprog | 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*" ] } ] } |