SpacedLeet

Spaced repetition for LeetCode

什麼是SpacedLeet?

SpacedLeet是由https://spacedleet.com開發的Chrome擴展程式,該擴展的主要功能是“Spaced repetition for LeetCode”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載SpacedLeet擴展crx文件

下載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
官方網址 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'"
}