SpacedLeet

Spaced repetition for LeetCode

Что такое SpacedLeet?

SpacedLeet - это расширение Chrome, разработанное https://spacedleet.com, и его основная функция - "Spaced repetition for LeetCode".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения SpacedLeet

Скачайте файлы расширений SpacedLeet в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название SpacedLeet SpacedLeet
ID dfhagjnahejiapmfkmmbkheikldoahch
Официальный URL https://chromewebstore.google.com/detail/spacedleet/dfhagjnahejiapmfkmmbkheikldoahch
Описание Spaced repetition for LeetCode
Размер файла 46.51 KB
Количество установок 421
Текущая Версия 2.0.2
Последнее Обновление 2021-02-22
Дата публикации 2020-01-04
Рейтинг 3.00/5 Всего 2 оценок
Разработчик https://spacedleet.com
Электронная почта [email protected]
Тип оплаты in_app
Официальный сайт расширения https://spacedleet.com
URL страницы помощи https://github.com/ImedAdel/spacedleet-issues/issues
URL страницы политики конфиденциальности https://tabji.link/privacy
Поддерживаемые языки 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'"
}