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ファイルをダウンロード
Gmail External Email Highlighter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" ] } |