LeetRecur - Spaced Repetition for Leetcode

Manage, track and revise your solved leetcode problems - all hands-free.

LeetRecur - Spaced Repetition for Leetcode란 무엇입니까?

LeetRecur - Spaced Repetition for Leetcode은(는) Naman Shrimali에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Manage, track and revise your solved leetcode problems - all hands-free."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

LeetRecur - Spaced Repetition for Leetcode 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Yet another extension that allows you to keep track of your leetcode problem submissions and makes easier for you to revise solved questions through spaced repetition!

Salient Features:
* Easy Submission Management: LeetRecur tracks your leetcode submissions and manages all the relevant statistics for you, making it completely hands-free. Now you can focus on problem solving instead of managing your submissions and pondering which problem require more of your effort.
* AI Powered: It accurately predicts your proficiency for each problem based on your activity while solving it and automatically schedule its revision using Spaced Repetition - a proven evidence-based learning technique. Gone are the days when you had to worry about forgetting hard learned concepts.
* Minimal: It includes a minimal popup which shows you what questions you should retry, based on spaced repetition algorithm. It also includes a home page where you can view your stats on your submission in the order of queue.

Visit https://leetrecur.namanshrimali.com to know more!


Changelog:
Major changes from v0.0.4
* Changed storage from sync to local to fix overflow bug.
* Fixed bug where sometime problem submission could not be intercepted.
* Fixed scheduling bug, where sometimes problem scheduled on a specific day would not appear.
* Problems are now scheduled at the beginning of the day.
* Problems in homepage are now shown earliest scheduled first.                    

확장 프로그램 기본 정보

이름 LeetRecur - Spaced Repetition for Leetcode LeetRecur - Spaced Repetition for Leetcode
ID lmidmepgdbipmebgdalghmbehpiobiie
공식 URL https://chromewebstore.google.com/detail/leetrecur-spaced-repetiti/lmidmepgdbipmebgdalghmbehpiobiie
설명 Manage, track and revise your solved leetcode problems - all hands-free.
파일 크기 86.86 KB
설치 횟수 708
현재 버전 0.0.7
최근 업데이트 2022-07-09
출시 날짜 2022-02-24
평점 3.42/5 총 12 개의 평점
개발자 Naman Shrimali
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://leetrecur.namanshrimali.com
개인정보 보호 정책 페이지 URL http://leetrecur.com
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetRecur - Spaced Repetition for Leetcode",
    "description": "Manage, track and revise your solved leetcode problems - all hands-free.",
    "version": "0.0.7",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "unlimitedStorage"
    ],
    "action": {
        "default_popup": "ui\/popup.html",
        "default_icon": {
            "128": "\/images\/lr128.png"
        },
        "icons": {
            "128": "\/images\/lr128.png"
        }
    },
    "options_page": "ui\/index.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/problems\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/problemsScript.js",
                "js\/jquery-3.6.0.slim.js"
            ]
        }
    ]
}