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.
擴展基本資訊
名稱 | CF Analytics |
ID | hhljbjodjdbjbggddjaidojnlmaobcpo |
官方網址 | 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 |
電子郵箱 | [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\/*" ] } |