Gmail Domain Highlighter
Visually indicates the type of email domain in Gmail.
Hvad er Gmail Domain Highlighter?
Gmail Domain Highlighter er en Chrome-udvidelse udviklet af berndverst, og dens hovedfunktion er "Visually indicates the type of email domain in Gmail.".
Download Gmail Domain Highlighter-udvidelses-CRX-fil
Download Gmail Domain Highlighter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | ![]() |
ID | ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
Officiel URL | https://chrome.google.com/webstore/detail/gmail-domain-highlighter/ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
Beskrivelse | Visually indicates the type of email domain in Gmail. |
Filstørrelse | 34.06 KB |
Antal Installationer | 34 |
Nuværende Version | 0.0.1 |
Senest Opdateret | 2015-08-29 |
Udgivelsesdato | 2015-08-29 |
Udvikler | berndverst |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/berndverst/gmail-domain-highlighter |
Understøttede Sprog | 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" ] } |