Gmail Domain Highlighter

Visually indicates the type of email domain in Gmail.

¿Qué es Gmail Domain Highlighter?

Gmail Domain Highlighter es una extensión de Chrome desarrollada por berndverst, y su función principal es "Visually indicates the type of email domain in Gmail.".

Descargar Archivo CRX de la Extensión Gmail Domain Highlighter

Descarga archivos de extensión Gmail Domain Highlighter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Gmail Domain Highlighter Gmail Domain Highlighter
ID ajfgpjfndlbicmphdbgbhcfjmmbkcbpa
URL Oficial https://chrome.google.com/webstore/detail/gmail-domain-highlighter/ajfgpjfndlbicmphdbgbhcfjmmbkcbpa
Descripción Visually indicates the type of email domain in Gmail.
Tamaño del Archivo 34.06 KB
Cantidad de Instalaciones 34
Versión Actual 0.0.1
Última Actualización 2015-08-29
Fecha de Publicación 2015-08-29
Desarrollador berndverst
Tipo de Pago free
Sitio Web de la Extensión https://github.com/berndverst/gmail-domain-highlighter
Idiomas Soportados 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"
    ]
}