Gmail Domain Highlighter
Visually indicates the type of email domain in Gmail.
What is Gmail Domain Highlighter?
Gmail Domain Highlighter is a Chrome extension developed by berndverst, and its main feature is "Visually indicates the type of email domain in Gmail.".
Download Gmail Domain Highlighter Extension CRX File
Download Gmail Domain Highlighter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Automatically highlights email addresses based on their domain in Gmail. You can define three domain RegEx patterns (including negation) to highlight email address in red, blue or green. Example: Ever accidentally emailed somebody outside of your company? Now you can make sure that external addresses look clearly different to avoid this problem. Simply mark all email addresses outside of your company as red, use the following negated RegEx Pattern: ^((?!(company.com|companyalias.com)).)*$ where company.com and companyalias.com are email domains of your company.
Extension Basic Information
Name | ![]() |
ID | ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
Official URL | https://chrome.google.com/webstore/detail/gmail-domain-highlighter/ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
Description | Visually indicates the type of email domain in Gmail. |
File Size | 34.06 KB |
Installation Count | 34 |
Current Version | 0.0.1 |
Last Updated | 2015-08-29 |
Publish Date | 2015-08-29 |
Developer | berndverst |
Payment Type | free |
Extension Website | https://github.com/berndverst/gmail-domain-highlighter |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail Domain Highlighter", "description": "Visually indicates the type of email domain in Gmail.", "version": "0.0.1", "homepage_url": "https:\/\/github.com\/berndverst", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/*", "https:\/\/www.google.com\/calendar\/*" ], "js": [ "jquery-2.1.4.min.js", "domain-highlighter.js" ] } ], "options_page": "options.html", "permissions": [ "tabs", "storage" ] } |