CF Analytics
Analyse Codeforces profiles
CF Analyticsとは何ですか?
CF AnalyticsはApoorva Raj Bhadaniによって開発されたChromeの拡張機能で、その主な機能は「Analyse Codeforces profiles」です。
拡張機能のスクリーンショット
CF Analytics拡張機能のCRXファイルをダウンロード
CF Analytics拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
CF Analytics Chrome extension improves the Codeforces profile webpage to include statistics of problems solved by the user. The ‘Problem Rating’ graph is a bar chart showing problems solved for each problem rating. The ‘Tags Solved’ graph is a doughnut chart displaying tags solved across any problem and also lists a count for each tag. The ‘Unsolved Problems’ shows a count of all problems attempted with not correct verdict and also lists them.
The extension communicates only with the Codeforces API and runs entirely on the browser. 拡張機能の基本情報
| 名前 | |
| ID | hhljbjodjdbjbggddjaidojnlmaobcpo |
| 公式URL | https://chromewebstore.google.com/detail/cf-analytics/hhljbjodjdbjbggddjaidojnlmaobcpo |
| 説明 | Analyse Codeforces profiles |
| ファイルサイズ | 112 KB |
| インストール数 | 40,000 |
| 現在のバージョン | 0.1.2 |
| 最終更新日 | 2021-08-04 |
| 公開日 | 2021-08-01 |
| 評価 | 5.00/5 合計 40 レビュー |
| 開発者 | Apoorva Raj Bhadani |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "CF Analytics",
"version": "0.1.2",
"description": "Analyse Codeforces profiles",
"icons": {
"128": "src\/asset\/icon128.png",
"48": "src\/asset\/icon48.png",
"16": "src\/asset\/icon16.png"
},
"browser_action": {
"default_icon": "src\/asset\/icon16.png",
"default_popup": "src\/popup.html",
"default_title": "CF Analytics"
},
"background": {
"scripts": [
"src\/js\/eventPage.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/codeforces.com\/friends"
],
"js": [
"src\/lib\/jquery-3.6.0.min.js",
"src\/js\/contentFriends.js"
],
"css": [
"src\/css\/contentFriends.css"
]
},
{
"matches": [
"https:\/\/codeforces.com\/profile\/*"
],
"js": [
"src\/lib\/jquery-3.6.0.min.js",
"src\/lib\/chart.min.js",
"src\/js\/contentProfile.js"
],
"css": [
"src\/css\/contentProfile.css"
]
}
],
"permissions": [
"https:\/\/codeforces.com\/*"
]
} | |