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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Manage, track and revise your solved leetcode problems - all hands-free."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में LeetRecur - Spaced Repetition for Leetcode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } ] } |