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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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*"
]
}
]
} | |