SpongeWise Flashcard Clipper
Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything.
Τι είναι το SpongeWise Flashcard Clipper;
Το SpongeWise Flashcard Clipper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.spongewise.com, και η κύρια λειτουργία του είναι "Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης SpongeWise Flashcard Clipper
Λήψη αρχείων επέκτασης SpongeWise Flashcard Clipper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Learn Anything. Clip Wikipedia articles, news stories, tutorials, or any other web page as a flashcard. Add notes and quiz questions and save it to your learning history. Remember Everything. When items become ready for review using spaced repetition, go to "My Sponge" on SpongeWise.com in order to review your flashcards notes and quiz questions.
Βασικές Πληροφορίες Επέκτασης
Όνομα | SpongeWise Flashcard Clipper |
ID | paeemhflfemffkcggpldnaofhgmffnlh |
Επίσημο URL | https://chromewebstore.google.com/detail/spongewise-flashcard-clip/paeemhflfemffkcggpldnaofhgmffnlh |
Περιγραφή | Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything. |
Μέγεθος Αρχείου | 60.28 KB |
Αριθμός Εγκαταστάσεων | 746 |
Τρέχουσα Έκδοση | 5.0.0 |
Τελευταία Ενημέρωση | 2018-10-16 |
Ημερομηνία Δημοσίευσης | 2018-10-15 |
Αξιολόγηση | 3.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | https://www.spongewise.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.spongewise.com |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SpongeWise Flashcard Clipper", "short_name": "SpongeWise", "description": "Flashcard clipper for any webpage. Add notes and quiz questions. Learn and memorize using spaced repetition to remember everything.", "version": "5.0.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png", "default_title": "SpongeWise" }, "permissions": [ "activeTab", "contextMenus", "storage" ], "background": { "scripts": [ "scripts\/parse.min.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/www.spongewise.com\/*", "https:\/\/localhost:3443\/*" ], "js": [ "content.js" ], "all_frames": true } ], "web_accessible_resources": [ "production.html", "localhost.html" ] } |