SpacedLeet

Spaced repetition for LeetCode

Cos'è SpacedLeet?

SpacedLeet è un'estensione di Chrome sviluppata da https://spacedleet.com, e la sua funzione principale è "Spaced repetition for LeetCode".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione SpacedLeet

Scarica i file di estensione SpacedLeet in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome SpacedLeet SpacedLeet
ID dfhagjnahejiapmfkmmbkheikldoahch
URL Ufficiale https://chromewebstore.google.com/detail/spacedleet/dfhagjnahejiapmfkmmbkheikldoahch
Descrizione Spaced repetition for LeetCode
Dimensione del File 46.51 KB
Conteggio Installazioni 421
Versione Corrente 2.0.2
Ultimo Aggiornamento 2021-02-22
Data di Pubblicazione 2020-01-04
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore https://spacedleet.com
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://spacedleet.com
URL della Pagina di Aiuto https://github.com/ImedAdel/spacedleet-issues/issues
URL della Pagina della Politica sulla Privacy https://tabji.link/privacy
Lingue Supportate 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'"
}