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 |
官方網址 | 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*" ] } ] } |