CF-Predictor
This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.
Apa itu CF-Predictor?
CF-Predictor adalah ekstensi Chrome yang dikembangkan oleh Wsl_F, dan fitur utamanya adalah "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi CF-Predictor
Unduh file ekstensi CF-Predictor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | CF-Predictor |
ID | ocfloejijfhhkkdmheodbaanephbnfhn |
URL Resmi | https://chromewebstore.google.com/detail/cf-predictor/ocfloejijfhhkkdmheodbaanephbnfhn |
Deskripsi | This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest. |
Ukuran File | 84.96 KB |
Jumlah Instalasi | 51,012 |
Versi Saat Ini | 1.3.2 |
Terakhir Diperbarui | 2022-11-28 |
Tanggal Publikasi | 2020-06-16 |
Penilaian | 4.53/5 Total 146 Penilaian |
Pengembang | Wsl_F |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://cf-predictor.wasylf.xyz/ |
URL Halaman Bantuan | https://codeforces.com/blog/entry/50411?locale=en |
Bahasa yang Didukung | 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*" ] } ] } |