Leetcode Analyzer
Add a graph for visualization of number of question per tag and also add a contest history table
Leetcode Analyzer란 무엇입니까?
Leetcode Analyzer은(는) Prashant kumar yadav에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a graph for visualization of number of question per tag and also add a contest history table"입니다.
확장 프로그램 스크린샷
Leetcode Analyzer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features: - simple design - update on every reload - Graph visualization with hover effect of showing tag name - User can check how many question already done on specific tag just by hovering on it - A Table which shows Contest history with rank and score - Faster updation than leetcode real contest time graph Because Leetcode officially doesn't provide any feature by which user get to know how much question already solve by them on specific topic so by this extension we can have that feature on Leetcode account page and this extension doesn't require any username and password. More feature coming soon.
확장 프로그램 기본 정보
이름 | Leetcode Analyzer |
ID | dhhhonpdnpmedblhfhppmmpmmadmkkpi |
공식 URL | https://chromewebstore.google.com/detail/leetcode-analyzer/dhhhonpdnpmedblhfhppmmpmmadmkkpi |
설명 | Add a graph for visualization of number of question per tag and also add a contest history table |
파일 크기 | 418 KB |
설치 횟수 | 775 |
현재 버전 | 0.0.6 |
최근 업데이트 | 2022-02-14 |
출시 날짜 | 2022-01-25 |
평점 | 3.86/5 총 14 개의 평점 |
개발자 | Prashant kumar yadav |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Leetcode Analyzer", "version": "0.0.6", "manifest_version": 3, "description": "Add a graph for visualization of number of question per tag and also add a contest history table", "icons": { "16": "src\/Images\/16X16_LOGO.png", "48": "src\/Images\/48X48_LOGO.png", "128": "src\/Images\/125X125_LOGO.png" }, "action": { "default_popup": "popup.html", "default_icon": "src\/Images\/125X125_LOGO.png" }, "content_scripts": [ { "js": [ "src\/component\/tagData.js", "src\/component\/fetchUserRankAndContest_Details.js", "bundle.js" ], "css": [ "style.css", "styleForTable.css" ], "matches": [ "https:\/\/leetcode.com\/*" ], "exclude_matches": [ "https:\/\/leetcode.com\/explore\/*", "https:\/\/leetcode.com\/problemset\/*", "https:\/\/leetcode.com\/contest\/*", "https:\/\/leetcode.com\/discuss\/*", "https:\/\/leetcode.com\/store\/*", "https:\/\/leetcode.com\/subscribe\/*", "https:\/\/leetcode.com\/playground\/*", "https:\/\/leetcode.com\/" ] } ] } |