SpacedLeet
Spaced repetition for LeetCode
SpacedLeet क्या है?
SpacedLeet https://spacedleet.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Spaced repetition for LeetCode"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SpacedLeet एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
SpacedLeet is an extension that helps you organize your LeetCode problems' reviews using spaced repetition, a scientifically-proven method to efficiently retain information. Using spaced repetition, correctly answered LeetCode questions are later and less frequently for review, while incorrectly answered LeetCode questions are shown earlier and more often. According to Wikipedia, "Spaced repetition is an evidence-based learning technique that is usually performed with flashcards. Newly introduced and more difficult flashcards are shown more frequently while older and less difficult flashcards are shown less frequently in order to exploit the psychological spacing effect. The use of spaced repetition has been shown to increase rate of learning."
एक्सटेंशन की मूल जानकारी
नाम | SpacedLeet |
ID | dfhagjnahejiapmfkmmbkheikldoahch |
आधिकारिक URL | https://chromewebstore.google.com/detail/spacedleet/dfhagjnahejiapmfkmmbkheikldoahch |
विवरण | Spaced repetition for LeetCode |
फ़ाइल का आकार | 46.51 KB |
स्थापना संख्या | 421 |
वर्तमान संस्करण | 2.0.2 |
अंतिम अपडेट | 2021-02-22 |
प्रकाशन तिथि | 2020-01-04 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | https://spacedleet.com |
ईमेल | [email protected] |
भुगतान के प्रकार | in_app |
एक्सटेंशन वेबसाइट | https://spacedleet.com |
सहायता पृष्ठ URL | https://github.com/ImedAdel/spacedleet-issues/issues |
गोपनीयता नीति पृष्ठ URL | https://tabji.link/privacy |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Spaced repetition for LeetCode", "version": "2.0.2", "name": "SpacedLeet", "options_page": "options.html", "background": { "page": "background.html" }, "browser_action": { "default_popup": "popup.html", "default_icon": "icon-128.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "js": [ "content-script.bundle.js" ], "matches": [ "*:\/\/leetcode.com\/*" ] } ], "manifest_version": 2, "permissions": [ "tabs", "storage", "activeTab", "https:\/\/spacedleet.vercel.app\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |