SpacedLeet

Spaced repetition for LeetCode

SpacedLeet란 무엇입니까?

SpacedLeet은(는) https://spacedleet.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Spaced repetition for LeetCode"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

SpacedLeet 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
}