CF stalker
stalk profiles on code forces
CF stalker란 무엇입니까?
CF stalker은(는) dhruv batra에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "stalk profiles on code forces"입니다.
확장 프로그램 스크린샷
CF stalker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
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\/*" ] } |