Email reading time for Gmail
Medium's like reading time estimation for your Gmail.
Email reading time for Gmail란 무엇입니까?
Email reading time for Gmail은(는) http://summarly.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Medium's like reading time estimation for your Gmail."입니다.
확장 프로그램 스크린샷
Email reading time for Gmail 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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]
확장 프로그램 기본 정보
이름 | |
ID | mmfmecanbhgllpfbgndhhhdjkamihekp |
공식 URL | https://chrome.google.com/webstore/detail/email-reading-time-for-gm/mmfmecanbhgllpfbgndhhhdjkamihekp |
설명 | Medium's like reading time estimation for your Gmail. |
파일 크기 | 137 KB |
설치 횟수 | 311 |
현재 버전 | 0.1.3 |
최근 업데이트 | 2019-11-06 |
출시 날짜 | 2019-11-05 |
평점 | 5.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": "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 } |