CF stalker
stalk profiles on code forces
什么是CF stalker?
CF stalker是由dhruv batra开发的Chrome扩展程序,该扩展的主要功能是“stalk profiles on code forces”。
扩展截图
下载CF stalker扩展crx文件
下载CF stalker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
CF stalker chrome extension imporve the codeforces profile webpage to include statistics of problem solved by time by that user.User can select year in the first graph to see lowest and highest rating solved for month and by hovering over the bar it shows the tags and and count of no of problem solved with that tag. In the second graph user can select month for which he want to see the day wise chart , which tell no of problem solved on that day and there tags and user can select the day he wants to see what problem he solved on that day , if user has solved the same problem twice on that day it will be shown only once. The extension communicates only with the Codeforces API and runs entirely on the browser.
扩展基本信息
名称 | CF stalker |
ID | njjefmgmfomkdfkoiimnjbhckbjldihb |
官方URL | https://chromewebstore.google.com/detail/cf-stalker/njjefmgmfomkdfkoiimnjbhckbjldihb |
简介 | stalk profiles on code forces |
文件大小 | 107 KB |
安装次数 | 1,707 |
当前版本 | 0.1.2 |
更新时间 | 2022-01-07 |
上架时间 | 2022-01-06 |
评分 | 4.50/5 共2次评分 |
开发者 | dhruv batra |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://www.freeprivacypolicy.com/live/7f4c6c58-ba49-4513-90db-1290f855930b |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CF stalker", "version": "0.1.2", "description": "stalk profiles on code forces", "icons": { "128": "src\/icons\/128.png", "48": "src\/icons\/48.png", "16": "src\/icons\/16.png" }, "browser_action": { "default_icon": "src\/icons\/16.png", "default_popup": "src\/popup.html", "default_title": "CF stalker" }, "background": { "scripts": [ "src\/js\/bgscripts.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/codeforces.com\/profile\/*" ], "js": [ "src\/lib\/jquery-3.6.0.min.js", "src\/lib\/chart.min.js", "src\/js\/main.js" ] } ], "permissions": [ "https:\/\/codeforces.com\/*" ] } |