Gmail Domain Highlighter
Visually indicates the type of email domain in Gmail.
Was ist Gmail Domain Highlighter?
Gmail Domain Highlighter ist eine Chrome-Erweiterung, die von berndverst entwickelt wurde, und ihr Hauptmerkmal ist "Visually indicates the type of email domain in Gmail.".
Gmail Domain Highlighter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gmail Domain 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
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.
Grundlegende Informationen zur Erweiterung
Name | ![]() |
ID | ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
Offizielle URL | https://chrome.google.com/webstore/detail/gmail-domain-highlighter/ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
Beschreibung | Visually indicates the type of email domain in Gmail. |
Dateigröße | 34.06 KB |
Installationsanzahl | 34 |
Aktuelle Version | 0.0.1 |
Letztes Update | 2015-08-29 |
Veröffentlichungsdatum | 2015-08-29 |
Entwickler | berndverst |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/berndverst/gmail-domain-highlighter |
Unterstützte Sprachen | 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" ] } |