Email reading time for Gmail
Medium's like reading time estimation for your Gmail.
Was ist Email reading time for Gmail?
Email reading time for Gmail ist eine Chrome-Erweiterung, die von http://summarly.com entwickelt wurde, und ihr Hauptmerkmal ist "Medium's like reading time estimation for your Gmail.".
Erweiterungsscreenshots
Email reading time for Gmail-Erweiterungs-CRX-Datei herunterladen
Laden Sie Email reading time for Gmail-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
It helps you estimate how long an email will take to read. Calculation is based on the average adult reading speed that around 200 words per minute (wpm). Estimated email reading time increases productivity, by prioritizing what to read. Features + We help you by adding the read-time estimation at the end of your email subject, before you send your email + We show read-time estimation, on any email in your inbox–displayed under the email subject Change-log + Version 0.1.3 – Show read-time, when you click to read an email. Privacy We don't store or process any data server–side, everything is processed on the client-browser. If you have any problems or feedback, write to us at [email protected]
Grundlegende Informationen zur Erweiterung
Name | |
ID | mmfmecanbhgllpfbgndhhhdjkamihekp |
Offizielle URL | https://chrome.google.com/webstore/detail/email-reading-time-for-gm/mmfmecanbhgllpfbgndhhhdjkamihekp |
Beschreibung | Medium's like reading time estimation for your Gmail. |
Dateigröße | 137 KB |
Installationsanzahl | 311 |
Aktuelle Version | 0.1.3 |
Letztes Update | 2019-11-06 |
Veröffentlichungsdatum | 2019-11-05 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | http://summarly.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://summarly.com |
Hilfeseite URL | https://summarly.com/support |
URL der Datenschutzrichtlinien-Seite | http://summarly.ai/privacy |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Email reading time for Gmail", "description": "Medium's like reading time estimation for your Gmail.", "version": "0.1.3", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/inbox.google.com\/*" ], "js": [ "inboxsdk.js", "content.js", "js\/jquery.js", "js\/compromise.min.js" ], "css": [ "styles.css" ], "run_at": "document_start" } ], "browser_action": { "default_icon": "time.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "web_accessible_resources": [ "time.png", "icon16.png" ], "permissions": [ "https:\/\/mail.google.com\/", "https:\/\/inbox.google.com\/" ], "manifest_version": 2 } |