CF GetRating
Get rating for Codeforces problems even with problem tags off.
CF GetRating란 무엇입니까?
CF GetRating은(는) Manas Rawat에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get rating for Codeforces problems even with problem tags off."입니다.
확장 프로그램 스크린샷
CF GetRating 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Get rating for Codeforces problems even with problem tags off. This Codeforces Get Rating extension helps users to just view the problem rating without seeing the other tags. But if you are stuck with any problem then you can view the tags by clicking on Show All Tags button. The extension also includes a shortcut to go to the Contest Standings directly. This extension is very helpful while practicing problems on Codeforces as it helps you to know the rating of the problem without explicitly knowing the tags associated with it. How to use : 1. Install the extension. 2. Turn off [ Show tags for unsolved problems ] option in the Problemset page of codeforces. 3. Open any Codeforces problem and it will show the problem rating. *NOTE* The extension does not work when the Codeforces API is down. *NOTE* The extension does not work with problems that do not have a problem rating. [ Screenshots for all the cases are attached ] UPDATE 1.0.1 Now you will be able to visit the Contest Standings from the problem page itself with the click of a button. UPDATE 1.0.3 Fixed issues with problem parsing. UPDATE 1.0.4 New feature to Show All Tags for a problem.
확장 프로그램 기본 정보
이름 | CF GetRating |
ID | amnjdhcbnpchmbggnfachokcjiidcpkc |
공식 URL | https://chromewebstore.google.com/detail/cf-getrating/amnjdhcbnpchmbggnfachokcjiidcpkc |
설명 | Get rating for Codeforces problems even with problem tags off. |
파일 크기 | 4.56 MB |
설치 횟수 | 2,855 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2022-07-25 |
출시 날짜 | 2022-07-07 |
평점 | 5.00/5 총 7 개의 평점 |
개발자 | Manas Rawat |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/importlogic/cf-getrating |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CF GetRating", "description": "Get rating for Codeforces problems even with problem tags off.", "version": "1.0.4", "manifest_version": 3, "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "action": { "default_popup": "popup.html", "default_icon": "images\/icon.png" }, "content_scripts": [ { "matches": [ "*:\/\/codeforces.com\/problemset\/problem\/*\/*", "*:\/\/codeforces.com\/contest\/*\/problem\/*" ], "js": [ "background.js" ], "css": [ "background.css" ] } ] } |