Gmail Domain Highlighter
Visually indicates the type of email domain in Gmail.
什么是Gmail Domain Highlighter?
Gmail Domain Highlighter是由berndverst开发的Chrome扩展程序,该扩展的主要功能是“Visually indicates the type of email domain in Gmail.”。
下载Gmail Domain Highlighter扩展crx文件
下载Gmail Domain Highlighter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | ![]() |
ID | ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
官方URL | https://chrome.google.com/webstore/detail/gmail-domain-highlighter/ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
简介 | Visually indicates the type of email domain in Gmail. |
文件大小 | 34.06 KB |
安装次数 | 34 |
当前版本 | 0.0.1 |
更新时间 | 2015-08-29 |
上架时间 | 2015-08-29 |
开发者 | berndverst |
付费类型 | free |
扩展官网 | https://github.com/berndverst/gmail-domain-highlighter |
支持的语言 | 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" ] } |