Gmail Domain Highlighter

Visually indicates the type of email domain in Gmail.

O que é Gmail Domain Highlighter?

Gmail Domain Highlighter é uma extensão do Chrome desenvolvida por berndverst, e sua principal característica é "Visually indicates the type of email domain in Gmail.".

Baixar o arquivo CRX da Extensão Gmail Domain Highlighter

Baixe arquivos de extensão Gmail Domain Highlighter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Gmail Domain Highlighter Gmail Domain Highlighter
ID ajfgpjfndlbicmphdbgbhcfjmmbkcbpa
URL Oficial https://chrome.google.com/webstore/detail/gmail-domain-highlighter/ajfgpjfndlbicmphdbgbhcfjmmbkcbpa
Descrição Visually indicates the type of email domain in Gmail.
Tamanho do Arquivo 34.06 KB
Contagem de Instalações 34
Versão Atual 0.0.1
Última Atualização 2015-08-29
Data de Publicação 2015-08-29
Desenvolvedor berndverst
Tipo de Pagamento free
Site da Extensão https://github.com/berndverst/gmail-domain-highlighter
Idiomas Suportados 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"
    ]
}