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.
Qu'est-ce que Gmail External Email Highlighter ?
Gmail External Email Highlighter est une extension Chrome développée par Matt Squirrell, et sa fonction principale est "For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Gmail External Email Highlighter
Téléchargez les fichiers d'extension Gmail External Email Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | oicgheeigckclpldjbmglhnndfmfilma |
URL Officiel | https://chromewebstore.google.com/detail/gmail-external-email-high/oicgheeigckclpldjbmglhnndfmfilma |
Description | For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company. |
Taille du Fichier | 6.91 KB |
Nombre d'Installations | 121 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2016-02-25 |
Date de Publication | 2016-02-25 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Matt Squirrell |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |