Email Insights
Email Insights aids the user to skim through emails very quickly by highlighting all the important keywords in their email. The…
Email Insights란 무엇입니까?
Email Insights은(는) EmailInsights에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Email Insights aids the user to skim through emails very quickly by highlighting all the important keywords in their email. The…"입니다.
확장 프로그램 스크린샷
Email Insights 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Email Insights aids the user to skim through emails very quickly by highlighting all the important keywords in their email. The extension uses Natural language processing(NLP) to determine the important keywords of one's email and highlights that text so the tedious process of skimming through emails turns into the easiest part of the day.In addition, the extension works automatically in the background when an email is opened without having to select any part of the email or pressing a key at all.We at Email Insights understand the importance of our user's privacy hence, NONE of the emails are ever processed outside the highlighting procedure and are not stored anywhere on our servers. Select from a wide range of colours to personalize the highlighting process and get the most out of Email Insights. Currently the extension is compatible with :- Gmail Yahoo Mail Outlook Mail Hotmail Patreon link - https://www.patreon.com/emailInsights Please have a look at our Privacy Policy and Terms of Service before using the extension :- Privacy Policy - https://sites.google.com/view/email-insights-privacy-policy Terms of Service - https://sites.google.com/view/emailinsightstermsofservice
확장 프로그램 기본 정보
이름 | |
ID | mehkjjekoafmnioaglgnaemcchcfmabc |
공식 URL | https://chrome.google.com/webstore/detail/email-insights/mehkjjekoafmnioaglgnaemcchcfmabc |
설명 | Email Insights aids the user to skim through emails very quickly by highlighting all the important keywords in their email. The… |
파일 크기 | 98.97 KB |
설치 횟수 | 40 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2020-09-08 |
출시 날짜 | 2020-07-11 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | EmailInsights |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://sites.google.com/view/email-insights-privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Email Insights", "icons": { "16": "image16.png", "48": "image48.png", "128": "image128.png" }, "version": "1.0.3", "content_security_policy": "script-src 'self' https:\/\/emaili.herokuapp.com\/receiver; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/u\/*", "https:\/\/outlook.live.com\/mail\/0\/*", "https:\/\/mail.yahoo.com\/d\/*" ], "js": [ "content.js", "services.js", "google.js", "outlook.js", "yahoo.js", "jquery.js" ], "css": [ "style.css" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "EI.png", "default_popup": "popup.html", "default_title": "Customize Insights!" }, "permissions": [ "tabs", "storage" ] } |