CF-Predictor
This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.
Cos'è CF-Predictor?
CF-Predictor è un'estensione di Chrome sviluppata da Wsl_F, e la sua funzione principale è "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CF-Predictor
Scarica i file di estensione CF-Predictor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | CF-Predictor |
ID | ocfloejijfhhkkdmheodbaanephbnfhn |
URL Ufficiale | https://chromewebstore.google.com/detail/cf-predictor/ocfloejijfhhkkdmheodbaanephbnfhn |
Descrizione | This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest. |
Dimensione del File | 84.96 KB |
Conteggio Installazioni | 51,012 |
Versione Corrente | 1.3.2 |
Ultimo Aggiornamento | 2022-11-28 |
Data di Pubblicazione | 2020-06-16 |
Valutazione | 4.53/5 Totale 146 Valutazioni |
Sviluppatore | Wsl_F |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://cf-predictor.wasylf.xyz/ |
URL della Pagina di Aiuto | https://codeforces.com/blog/entry/50411?locale=en |
Lingue Supportate | 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*" ] } ] } |