SpacedLeet

Spaced repetition for LeetCode

Vad är SpacedLeet?

SpacedLeet är en Chrome-tillägg utvecklad av https://spacedleet.com, och dess huvudfunktion är "Spaced repetition for LeetCode".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner SpacedLeet-förlängningens CRX-fil

Ladda ner SpacedLeet-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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."                    

Grundläggande Information om Tillägg

Namn SpacedLeet SpacedLeet
ID dfhagjnahejiapmfkmmbkheikldoahch
Officiell webbadress https://chromewebstore.google.com/detail/spacedleet/dfhagjnahejiapmfkmmbkheikldoahch
Beskrivning Spaced repetition for LeetCode
Filstorlek 46.51 KB
Antal Installationer 421
Aktuell Version 2.0.2
Senast Uppdaterad 2021-02-22
Publiceringsdatum 2020-01-04
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare https://spacedleet.com
E-post [email protected]
Betalningssätt in_app
Tilläggswebbplats https://spacedleet.com
Hjälpsida URL https://github.com/ImedAdel/spacedleet-issues/issues
URL till Sekretesspolicy Sidan https://tabji.link/privacy
Stödda Språk 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'"
}