LeetNote
The efficient Leetcode Notebook with built-in Spaced Repetition
LeetNote क्या है?
LeetNote https://leetnote.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The efficient Leetcode Notebook with built-in Spaced Repetition"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में LeetNote एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } |