LeetNote
The efficient Leetcode Notebook with built-in Spaced Repetition
LeetNote란 무엇입니까?
LeetNote은(는) https://leetnote.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The efficient Leetcode Notebook with built-in Spaced Repetition"입니다.
확장 프로그램 스크린샷
LeetNote 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
LeeNote = Leetcode + Spaced-Repetition-Review Notebook Q1: Have you ever faced the situation when you completely forget the solution of a problem you solved it before? Q2: Are you preparing for technical interviews or coding competitions and looking for a more efficient way to learn algorithms and data structures? GET STARTED * Install LeetNote extension * Go to any problem page on leetcode.com, the Leetnote sidebar should show up * Take notes using the sidebar * Go to LeetNote.io to view saved notes or review with spaced-repetition KEY FEATURES * An optimal step-by-step framework to tackle any Leetnote problem * Chrome extension to easily access Leetcode questions and take notes right on the page * Spaced-repetition algorithm to help you retain information better and learn faster * Web app with a clean and user-friendly interface for optimal reviewing experience HOW IT WORKS The Leetcode Spaced-Repetition Notebook uses a scientifically proven learning technique to increase your retention and comprehension of coding concepts. The tool will track your performance on Leetcode questions and present them to you at the optimal interval for maximum learning efficiency. With the Chrome extension, you can practice Leetcode problems right on the website and the Web app will store all your progress and performance data.
확장 프로그램 기본 정보
이름 | LeetNote |
ID | lgeahiemdocncjpfobiaejjfepdhmnkn |
공식 URL | https://chromewebstore.google.com/detail/leetnote/lgeahiemdocncjpfobiaejjfepdhmnkn |
설명 | The efficient Leetcode Notebook with built-in Spaced Repetition |
파일 크기 | 700 KB |
설치 횟수 | 33 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2023-04-21 |
출시 날짜 | 2023-02-19 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | https://leetnote.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.leetnote.io |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LeetNote", "description": "The efficient Leetcode Notebook with built-in Spaced Repetition", "version": "1.0.3", "permissions": [ "storage" ], "icons": { "16": "images\/icon-16x16.png", "32": "images\/icon-32x32.png", "48": "images\/icon-48x48.png", "128": "images\/icon-128x128.png" }, "background": { "service_worker": "\/background.js" }, "action": { "default_icon": { "16": "images\/icon-16x16.png", "32": "images\/icon-32x32.png", "48": "images\/icon-48x48.png", "128": "images\/icon-128x128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*.leetnote.io\/*" ], "js": [ "\/content_auth.js" ] }, { "matches": [ "https:\/\/*.leetcode.com\/problems\/*" ], "js": [ "\/content.js" ] } ], "options_page": "options.html" } |