Gmail External Email Highlighter
For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company.
Gmail External Email Highlighter란 무엇입니까?
Gmail External Email Highlighter은(는) Matt Squirrell에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company."입니다.
확장 프로그램 스크린샷
Gmail External Email Highlighter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If your company uses Gmail's web client to send emails, this extension will highlight email addresses that fall outside of rules you define. This way your users can easily see if they're accidentally sending an email to someone outside of the company. Or you could just put your bosses email in to make sure you're never caught out by not noticing them in the CC box! Email rules are set using regex.
확장 프로그램 기본 정보
이름 | |
ID | oicgheeigckclpldjbmglhnndfmfilma |
공식 URL | https://chromewebstore.google.com/detail/gmail-external-email-high/oicgheeigckclpldjbmglhnndfmfilma |
설명 | For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company. |
파일 크기 | 6.91 KB |
설치 횟수 | 121 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2016-02-25 |
출시 날짜 | 2016-02-25 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Matt Squirrell |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail External Email Highlighter", "short_name": "External Email Highlighter", "description": "For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company.", "version": "1.0.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "css": [ "rulesStyles.css" ], "js": [ "runRulesCheck.js" ] } ], "permissions": [ "https:\/\/mail.google.com\/*", "storage" ] } |