Gmail Domain Highlighter
Visually indicates the type of email domain in Gmail.
Gmail Domain Highlighterคืออะไร?
Gmail Domain Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย berndverst และคุณลักษณะหลักของมันคือ "Visually indicates the type of email domain in Gmail."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail Domain Highlighter
ดาวน์โหลดไฟล์ส่วนขยาย Gmail Domain Highlighter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ![]() |
ID | ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/gmail-domain-highlighter/ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
คำอธิบาย | Visually indicates the type of email domain in Gmail. |
ขนาดไฟล์ | 34.06 KB |
จำนวนการติดตั้ง | 34 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2015-08-29 |
วันที่เผยแพร่ | 2015-08-29 |
ผู้พัฒนา | berndverst |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/berndverst/gmail-domain-highlighter |
ภาษาที่รองรับ | 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" ] } |