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.

Cos'è Gmail External Email Highlighter?

Gmail External Email Highlighter è un'estensione di Chrome sviluppata da Matt Squirrell, e la sua funzione principale è "For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Gmail External Email Highlighter

Scarica i file di estensione Gmail External Email Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Gmail External Email Highlighter Gmail External Email Highlighter
ID oicgheeigckclpldjbmglhnndfmfilma
URL Ufficiale https://chromewebstore.google.com/detail/gmail-external-email-high/oicgheeigckclpldjbmglhnndfmfilma
Descrizione For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company.
Dimensione del File 6.91 KB
Conteggio Installazioni 121
Versione Corrente 1.0.1
Ultimo Aggiornamento 2016-02-25
Data di Pubblicazione 2016-02-25
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Matt Squirrell
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}