Gmail Domain Highlighter
Visually indicates the type of email domain in Gmail.
Apa itu Gmail Domain Highlighter?
Gmail Domain Highlighter adalah ekstensi Chrome yang dikembangkan oleh berndverst, dan fitur utamanya adalah "Visually indicates the type of email domain in Gmail.".
Unduh Berkas CRX Ekstensi Gmail Domain Highlighter
Unduh file ekstensi Gmail Domain Highlighter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | ![]() |
ID | ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
URL Resmi | https://chrome.google.com/webstore/detail/gmail-domain-highlighter/ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
Deskripsi | Visually indicates the type of email domain in Gmail. |
Ukuran File | 34.06 KB |
Jumlah Instalasi | 34 |
Versi Saat Ini | 0.0.1 |
Terakhir Diperbarui | 2015-08-29 |
Tanggal Publikasi | 2015-08-29 |
Pengembang | berndverst |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/berndverst/gmail-domain-highlighter |
Bahasa yang Didukung | 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" ] } |