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.

Was ist Gmail External Email Highlighter?

Gmail External Email Highlighter ist eine Chrome-Erweiterung, die von Matt Squirrell entwickelt wurde, und ihr Hauptmerkmal ist "For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company.".

Erweiterungsscreenshots

screenshot

Gmail External Email Highlighter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gmail External Email Highlighter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Gmail External Email Highlighter Gmail External Email Highlighter
ID oicgheeigckclpldjbmglhnndfmfilma
Offizielle URL https://chromewebstore.google.com/detail/gmail-external-email-high/oicgheeigckclpldjbmglhnndfmfilma
Beschreibung For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company.
Dateigröße 6.91 KB
Installationsanzahl 121
Aktuelle Version 1.0.1
Letztes Update 2016-02-25
Veröffentlichungsdatum 2016-02-25
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Matt Squirrell
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}