Leetcode Enhancer
A browser extension to improve productivity on Leetcode.
Leetcode Enhancer란 무엇입니까?
Leetcode Enhancer은(는) Lovesh Dongre에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension to improve productivity on Leetcode."입니다.
확장 프로그램 스크린샷
Leetcode Enhancer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
It is a light-weight browser extension which boosts your productivity by hiding unnecessary visual elements from the screen, enabling you to focus on what is important. You can change your preferences form the popup menu and find out what best suits your needs. Its has the following features: **[Supports new UI]** - Hide locked problems from the table - Hide / Show any table column - Highlight solved problems - Hide difficulty count - Hide solved problems STOP getting intimidated by difficulty and FOCUS on problem-solving!
확장 프로그램 기본 정보
이름 | Leetcode Enhancer |
ID | gcmncppaaebldbkgkcbojghpmpjkdlmp |
공식 URL | https://chromewebstore.google.com/detail/leetcode-enhancer/gcmncppaaebldbkgkcbojghpmpjkdlmp |
설명 | A browser extension to improve productivity on Leetcode. |
파일 크기 | 47.28 KB |
설치 횟수 | 12,723 |
현재 버전 | 1.62 |
최근 업데이트 | 2024-02-20 |
출시 날짜 | 2020-12-01 |
평점 | 3.97/5 총 32 개의 평점 |
개발자 | Lovesh Dongre |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Leetcode Enhancer", "version": "1.62", "author": "Lovesh Dongre", "description": "A browser extension to improve productivity on Leetcode.", "icons": { "48": "icons\/logo.png", "96": "icons\/logo-96.png" }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*" ], "css": [ "content-script.css" ], "js": [ "content-script.js" ] } ], "background": { "service_worker": "service_worker.js" }, "action": { "browser_style": true, "default_icon": { "48": "icons\/logo.png", "96": "icons\/logo-96.png" }, "default_title": "Leetcode Enhancer", "default_popup": "popup.html", "theme_icons": [ { "light": "icons\/logo.png", "dark": "icons\/logo.png", "size": 48 } ], "show_matches": [ "https:\/\/leetcode.com\/*" ] }, "permissions": [ "storage" ] } |