Read With Kaffae
Remember what you read. Mindful reading made easy.
Τι είναι το Read With Kaffae;
Το Read With Kaffae είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://kaffae.com, και η κύρια λειτουργία του είναι "Remember what you read. Mindful reading made easy.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Read With Kaffae
Λήψη αρχείων επέκτασης Read With Kaffae σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Remember more of what you read. Mindful reading made easy. With Kaffae extension, you easily gain self-awareness of how you read every day. It automatically tracks and analyzes your reading in the background. It is ideal for people who spend time reading New York Times, BBC, Medium, New Yorker, Wikipedia, and other publishers. ★ Daily Report You will get a daily update of your reading, every morning when you open a laptop. We forget 80% of what we read unless we have an exposure again. This spaced repetition is the effective way to retain information. ★ Memory Connection You will get a notification with similar articles you have read in the past - whether that's 3 weeks or 3 months ago. Build new idea in your understanding by building long gone connection. ★ Automatic Link Manager Your articles are saved automatically. You can quickly find them with 81 automatic categories. You can also use the filter by the time you've spent reading. You don't need to constantly click on "save" bookmarking every time. ★ Article / Book Suggestion You will have article as well as book suggestion based on your reading. Expand your knowledge from casual reading to deep expertise. ★ Friend Update You can share your reading activity all at once. Grab a link and share your entire list of daily articles with anyone. Also enjoy the leaderboard within the platform how much you read relatively to others. Extension Features: * Daily report to improve your reading habit. * Realtime reminder of your related articles. * Personal library to visualize your historical reading. * Automatic breakdown of your articles into 81 categories. * A weekly goal for maintaining learning motivation. * Article discovery based on your reading. * Connect with friends to exchange reading list. ---------------------------------- For technical implementation of how article tracking works, please read this blog post. https://medium.com/kaffae/how-kaffae-extension-recognizes-and-tracks-articles-2f477092b9d1
Βασικές Πληροφορίες Επέκτασης
Όνομα | Read With Kaffae |
ID | cdopdmmkjbdmffleiaajlplpgfbikekc |
Επίσημο URL | https://chromewebstore.google.com/detail/read-with-kaffae/cdopdmmkjbdmffleiaajlplpgfbikekc |
Περιγραφή | Remember what you read. Mindful reading made easy. |
Μέγεθος Αρχείου | 132 KB |
Αριθμός Εγκαταστάσεων | 354 |
Τρέχουσα Έκδοση | 0.8.5 |
Τελευταία Ενημέρωση | 2021-11-24 |
Ημερομηνία Δημοσίευσης | 2020-06-19 |
Αξιολόγηση | 5.00/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | https://kaffae.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://kaffae.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://kaffae.com |
URL της Σελίδας Πολιτικής Απορρήτου | https://kaffae.com/privacypolicy.html |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Read With Kaffae", "short_name": "Kaffae", "version": "0.8.5", "description": "Remember what you read. Mindful reading made easy.", "permissions": [ "https:\/\/app.kaffae.com\/*", "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "history" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ ".\/build\/content.min.js" ], "run_at": "document_idle" } ], "externally_connectable": { "matches": [ "https:\/\/app.kaffae.com\/*" ] }, "browser_action": { "default_title": "Kaffae", "default_icon": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "web_accessible_resources": [ "oauth_success.js", "oauth_success.html" ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "manifest_version": 2 } |