Codeforces Enhancer
Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link
Codeforces Enhancer란 무엇입니까?
Codeforces Enhancer은(는) alexander.agulenko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link"입니다.
확장 프로그램 스크린샷
Codeforces Enhancer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Chrome extension that makes Codeforces better: supports multiple ratings graph, colorizes standings by used programming languages, adds "Hide/Show solved problems" link to Problemset page
확장 프로그램 기본 정보
이름 | Codeforces Enhancer |
ID | ocmandagmgmkcplckgnfgaokpgkfenmp |
공식 URL | https://chromewebstore.google.com/detail/codeforces-enhancer/ocmandagmgmkcplckgnfgaokpgkfenmp |
설명 | Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link |
파일 크기 | 25.12 KB |
설치 횟수 | 13,461 |
현재 버전 | 1.2 |
최근 업데이트 | 2020-07-23 |
출시 날짜 | 2015-07-27 |
평점 | 4.40/5 총 35 개의 평점 |
개발자 | alexander.agulenko |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://codeforces.com/profile/agul |
도움말 페이지 URL | https://github.com/agul/cf-enhancer |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": false, "js": [ "options.js", "multiGraph.js" ], "matches": [ "https:\/\/codeforces.com\/profile\/*", "https:\/\/www.codeforces.com\/profile\/*" ], "run_at": "document_idle" }, { "all_frames": false, "js": [ "options.js", "colorizeStandings.js" ], "matches": [ "https:\/\/codeforces.com\/contest\/*\/standings*", "https:\/\/www.codeforces.com\/contest\/*\/standings*", "https:\/\/www.codeforces.com\/contest\/*\/room\/*", "https:\/\/codeforces.com\/contest\/*\/room\/*", "https:\/\/www.codeforces.com\/gym\/*\/standings*", "https:\/\/codeforces.com\/gym\/*\/standings*", "https:\/\/www.codeforces.com\/spectator\/*\/standings*", "https:\/\/codeforces.com\/spectator\/*\/standings*" ], "run_at": "document_idle" }, { "all_frames": false, "js": [ "options.js", "hideSolved.js" ], "matches": [ "https:\/\/codeforces.com\/problemset", "https:\/\/www.codeforces.com\/problemset", "https:\/\/www.codeforces.com\/problemset\/page\/*", "https:\/\/codeforces.com\/problemset\/page\/*" ], "run_at": "document_idle" } ], "description": "Makes Codeforces better: multiple ratings graph, colorizes standings, adds \"Hide\/Show solved problems\" link", "icons": { "16": "logo_16x16.png", "48": "logo_48x48.png", "128": "logo_128x128.png" }, "manifest_version": 2, "name": "Codeforces Enhancer", "short_name": "CF Enhancer", "permissions": [ "storage" ], "version": "1.2", "options_page": "options_page.html", "options_ui": { "page": "options.html", "chrome_style": true } } |