Duolingo Spaced Repetition

A Chrome Browser Extension to Add Spaced Repetition to Duolingo

什麼是Duolingo Spaced Repetition?

Duolingo Spaced Repetition是由Chase開發的Chrome擴展程式,該擴展的主要功能是“A Chrome Browser Extension to Add Spaced Repetition to Duolingo”。

擴展截圖

screenshot

下載Duolingo Spaced Repetition擴展crx文件

下載Duolingo Spaced Repetition擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Spaced repetition is an evidence-based learning technique that has been proven to increase the rate of information retention. It works by presenting the user with new and more difficult lessons more frequently, while older and less difficult lessons are shown less frequently in order to exploit the psychological spacing effect :brain:

It is commonly used for studying languages, however good tooling currently only exists for flashcard based studying systems such as Anki and SuperMemo. The Duolingo Spaced Repetition extension aims to bridge the amazing power of Duolingo with the proven methodology of spaced repetition by introducing a new study mode! :sparkles:

Simply install the extension and you will see a new study mode button for spaced repetition. Use the new study mode and it will auto select your study lessons based on what evidence shows will help you retain information the best! :tada:

Features
- Spaced Repetition mode
- Auto-start new lessons                    

擴展基本資訊

名稱 Duolingo Spaced Repetition Duolingo Spaced Repetition
ID kflkpdnjoccoknecjipnjeokahflebgo
官方網址 https://chromewebstore.google.com/detail/duolingo-spaced-repetitio/kflkpdnjoccoknecjipnjeokahflebgo
簡介 A Chrome Browser Extension to Add Spaced Repetition to Duolingo
檔案大小 31.35 KB
安裝次數 243
目前版本 1.1
更新時間 2022-05-10
上架時間 2022-05-02
評分 2.00/5 共 4 次評分
開發者 Chase
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/chase-manning/duolingo-sr
說明頁面URL https://github.com/chase-manning/duolingo-sr/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duolingo Spaced Repetition",
    "description": "A Chrome Browser Extension to Add Spaced Repetition to Duolingo",
    "version": "1.1",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/logo_16.png",
            "32": "\/images\/logo_32.png",
            "48": "\/images\/logo_48.png",
            "128": "\/images\/logo_128.png"
        }
    },
    "icons": {
        "16": "\/images\/logo_16.png",
        "32": "\/images\/logo_32.png",
        "48": "\/images\/logo_48.png",
        "128": "\/images\/logo_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.duolingo.com\/*"
            ],
            "css": [
                "global.css"
            ],
            "js": [
                "global.js",
                "background.js"
            ]
        }
    ]
}