Gmail Domain Highlighter
Visually indicates the type of email domain in Gmail.
什麼是Gmail Domain Highlighter?
Gmail Domain Highlighter是由berndverst開發的Chrome擴展程式,該擴展的主要功能是“Visually indicates the type of email domain in Gmail.”。
下載Gmail Domain Highlighter擴展crx文件
下載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 |
官方網址 | 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" ] } |