LeetRecur - Spaced Repetition for Leetcode

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

Was ist LeetRecur - Spaced Repetition for Leetcode?

LeetRecur - Spaced Repetition for Leetcode ist eine Chrome-Erweiterung, die von Naman Shrimali entwickelt wurde, und ihr Hauptmerkmal ist "Manage, track and revise your solved leetcode problems - all hands-free.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

LeetRecur - Spaced Repetition for Leetcode-Erweiterungs-CRX-Datei herunterladen

Laden Sie LeetRecur - Spaced Repetition for Leetcode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name LeetRecur - Spaced Repetition for Leetcode LeetRecur - Spaced Repetition for Leetcode
ID lmidmepgdbipmebgdalghmbehpiobiie
Offizielle URL https://chromewebstore.google.com/detail/leetrecur-spaced-repetiti/lmidmepgdbipmebgdalghmbehpiobiie
Beschreibung Manage, track and revise your solved leetcode problems - all hands-free.
Dateigröße 86.86 KB
Installationsanzahl 708
Aktuelle Version 0.0.7
Letztes Update 2022-07-09
Veröffentlichungsdatum 2022-02-24
Bewertung 3.42/5 Insgesamt 12 Bewertungen
Entwickler Naman Shrimali
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://leetrecur.namanshrimali.com
URL der Datenschutzrichtlinien-Seite http://leetrecur.com
Unterstützte Sprachen 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"
            ]
        }
    ]
}