Gmail Summarization
Email summarization, read what's important.
Τι είναι το Gmail Summarization;
Το Gmail Summarization είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://summarly.com, και η κύρια λειτουργία του είναι "Email summarization, read what's important.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Gmail Summarization
Λήψη αρχείων επέκτασης Gmail Summarization σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
An AI–powered reading assistant, that works for email conversations on Gmail, and helps to automatically summarize email threads and extract insights—highlighting important sentences and, suggesting #labels for categorizing emails. The idea, is to build an email summarizer that helps to automatically summarize email threads, by presenting a paragraph consisting of the most important sentences—these are the sentences that the user must read to get the main point of the email, where for many cases, reading the rest is unnecessary. ** privacy ** we don't store or share data with others, we respect people's data, like we do for our selfs. if you have any questions feel free to get in touch, we would love to get your feedback.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | lemikfhgbognfmidedogimihofllajni |
Επίσημο URL | https://chrome.google.com/webstore/detail/gmail-summarization/lemikfhgbognfmidedogimihofllajni |
Περιγραφή | Email summarization, read what's important. |
Μέγεθος Αρχείου | 57.37 KB |
Αριθμός Εγκαταστάσεων | 113 |
Τρέχουσα Έκδοση | 0.1.4 |
Τελευταία Ενημέρωση | 2019-11-16 |
Ημερομηνία Δημοσίευσης | 2019-11-16 |
Αξιολόγηση | 4.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | http://summarly.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://summarly.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://summarly.com/support/ |
URL της Σελίδας Πολιτικής Απορρήτου | http://summarly.ai/privacy |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gmail Summarization", "description": "Email summarization, read what's important.", "version": "0.1.4", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/inbox.google.com\/*", "https:\/\/summarly-api.herokuapp.com\/*" ], "js": [ "js\/jquery.js", "inboxsdk.js", "content.js" ], "css": [ "styles.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "lines.png" ], "background": { "scripts": [ "js\/jquery.js", "background.js" ], "persistent": false }, "permissions": [ "https:\/\/mail.google.com\/", "https:\/\/inbox.google.com\/" ], "manifest_version": 2 } |