Gmail Domain Highlighter
Visually indicates the type of email domain in Gmail.
Qu'est-ce que Gmail Domain Highlighter ?
Gmail Domain Highlighter est une extension Chrome développée par berndverst, et sa fonction principale est "Visually indicates the type of email domain in Gmail.".
Télécharger le fichier CRX de l'extension Gmail Domain Highlighter
Téléchargez les fichiers d'extension Gmail Domain 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
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.
Informations de Base sur l'Extension
Nom | ![]() |
ID | ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
URL Officiel | https://chrome.google.com/webstore/detail/gmail-domain-highlighter/ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
Description | Visually indicates the type of email domain in Gmail. |
Taille du Fichier | 34.06 KB |
Nombre d'Installations | 34 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2015-08-29 |
Date de Publication | 2015-08-29 |
Développeur | berndverst |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/berndverst/gmail-domain-highlighter |
Langues Prises en Charge | 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" ] } |