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"입니다.
확장 프로그램 스크린샷
Duolingo Spaced Repetition 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
ID | kflkpdnjoccoknecjipnjeokahflebgo |
공식 URL | 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" ] } ] } |