CF-Predictor
This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.
什么是CF-Predictor?
CF-Predictor是由Wsl_F开发的Chrome扩展程序,该扩展的主要功能是“This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.”。
扩展截图
下载CF-Predictor扩展crx文件
下载CF-Predictor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | CF-Predictor |
ID | ocfloejijfhhkkdmheodbaanephbnfhn |
官方URL | https://chromewebstore.google.com/detail/cf-predictor/ocfloejijfhhkkdmheodbaanephbnfhn |
简介 | This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest. |
文件大小 | 84.96 KB |
安装次数 | 51,012 |
当前版本 | 1.3.2 |
更新时间 | 2022-11-28 |
上架时间 | 2020-06-16 |
评分 | 4.53/5 共146次评分 |
开发者 | Wsl_F |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://cf-predictor.wasylf.xyz/ |
帮助页面URL | https://codeforces.com/blog/entry/50411?locale=en |
支持的语言 | 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*" ] } ] } |