SpacedLeet

Spaced repetition for LeetCode

Co to jest SpacedLeet?

SpacedLeet to rozszerzenie Chrome opracowane przez https://spacedleet.com, a jego główną funkcją jest „Spaced repetition for LeetCode”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia SpacedLeet

Pobierz pliki rozszerzeń SpacedLeet w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa SpacedLeet SpacedLeet
ID dfhagjnahejiapmfkmmbkheikldoahch
Oficjalny URL https://chromewebstore.google.com/detail/spacedleet/dfhagjnahejiapmfkmmbkheikldoahch
Opis Spaced repetition for LeetCode
Rozmiar pliku 46.51 KB
Liczba instalacji 421
Aktualna Wersja 2.0.2
Ostatnia Aktualizacja 2021-02-22
Data Publikacji 2020-01-04
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper https://spacedleet.com
E-mail [email protected]
Typ Płatności in_app
Strona Rozszerzenia https://spacedleet.com
Adres URL Strony Pomocy https://github.com/ImedAdel/spacedleet-issues/issues
Adres URL Strony Polityki Prywatności https://tabji.link/privacy
Obsługiwane Języki 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'"
}