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.

O que é Gmail External Email Highlighter?

Gmail External Email Highlighter é uma extensão do Chrome desenvolvida por Matt Squirrell, e sua principal característica é "For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Gmail External Email Highlighter

Baixe arquivos de extensão Gmail External Email 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

                        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.                    

Informações Básicas da Extensão

Nome Gmail External Email Highlighter Gmail External Email Highlighter
ID oicgheeigckclpldjbmglhnndfmfilma
URL Oficial https://chromewebstore.google.com/detail/gmail-external-email-high/oicgheeigckclpldjbmglhnndfmfilma
Descrição For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company.
Tamanho do Arquivo 6.91 KB
Contagem de Instalações 121
Versão Atual 1.0.1
Última Atualização 2016-02-25
Data de Publicação 2016-02-25
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Matt Squirrell
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}