CF-Predictor
This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.
CF-Predictor là gì?
CF-Predictor là một tiện ích mở rộng Chrome được phát triển bởi Wsl_F, và tính năng chính của nó là "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng CF-Predictor
Tải xuống các tệp mở rộng CF-Predictor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CF-Predictor |
ID | ocfloejijfhhkkdmheodbaanephbnfhn |
URL Chính Thức | https://chromewebstore.google.com/detail/cf-predictor/ocfloejijfhhkkdmheodbaanephbnfhn |
Mô tả | This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest. |
Kích Thước Tệp | 84.96 KB |
Số Lần Cài Đặt | 51,012 |
Phiên Bản Hiện Tại | 1.3.2 |
Cập Nhật Lần Cuối | 2022-11-28 |
Ngày Phát Hành | 2020-06-16 |
Đánh Giá | 4.53/5 Tổng số 146 Đánh Giá |
Nhà Phát Triển | Wsl_F |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://cf-predictor.wasylf.xyz/ |
URL Trang Trợ Giúp | https://codeforces.com/blog/entry/50411?locale=en |
Ngôn Ngữ Được Hỗ Trợ | 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*" ] } ] } |