SpacedLeet
Spaced repetition for LeetCode
Was ist SpacedLeet?
SpacedLeet ist eine Chrome-Erweiterung, die von https://spacedleet.com entwickelt wurde, und ihr Hauptmerkmal ist "Spaced repetition for LeetCode".
Erweiterungsscreenshots
SpacedLeet-Erweiterungs-CRX-Datei herunterladen
Laden Sie SpacedLeet-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
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."
Grundlegende Informationen zur Erweiterung
Name | SpacedLeet |
ID | dfhagjnahejiapmfkmmbkheikldoahch |
Offizielle URL | https://chromewebstore.google.com/detail/spacedleet/dfhagjnahejiapmfkmmbkheikldoahch |
Beschreibung | Spaced repetition for LeetCode |
Dateigröße | 46.51 KB |
Installationsanzahl | 421 |
Aktuelle Version | 2.0.2 |
Letztes Update | 2021-02-22 |
Veröffentlichungsdatum | 2020-01-04 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | https://spacedleet.com |
[email protected] | |
Zahlungsart | in_app |
Erweiterungswebsite | https://spacedleet.com |
Hilfeseite URL | https://github.com/ImedAdel/spacedleet-issues/issues |
URL der Datenschutzrichtlinien-Seite | https://tabji.link/privacy |
Unterstützte Sprachen | 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'" } |