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
公式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
Eメール [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'"
}