SpacedLeet
Spaced repetition for LeetCode
What is SpacedLeet?
SpacedLeet is a Chrome extension developed by https://spacedleet.com, and its main feature is "Spaced repetition for LeetCode".
Extension Screenshots
Download SpacedLeet Extension CRX File
Download SpacedLeet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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."
Extension Basic Information
Name | SpacedLeet |
ID | dfhagjnahejiapmfkmmbkheikldoahch |
Official URL | https://chromewebstore.google.com/detail/spacedleet/dfhagjnahejiapmfkmmbkheikldoahch |
Description | Spaced repetition for LeetCode |
File Size | 46.51 KB |
Installation Count | 421 |
Current Version | 2.0.2 |
Last Updated | 2021-02-22 |
Publish Date | 2020-01-04 |
Rating | 3.00/5 Total 2 Ratings |
Developer | https://spacedleet.com |
[email protected] | |
Payment Type | in_app |
Extension Website | https://spacedleet.com |
Help Page URL | https://github.com/ImedAdel/spacedleet-issues/issues |
Privacy Policy Page URL | https://tabji.link/privacy |
Supported Languages | 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'" } |