Duolingo Spaced Repetition
A Chrome Browser Extension to Add Spaced Repetition to Duolingo
Τι είναι το Duolingo Spaced Repetition;
Το Duolingo Spaced Repetition είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Chase, και η κύρια λειτουργία του είναι "A Chrome Browser Extension to Add Spaced Repetition to Duolingo".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Duolingo Spaced Repetition
Λήψη αρχείων επέκτασης 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 |
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" ] } ] } |