Gmail External Email Highlighter

For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company.

什麼是Gmail External Email Highlighter?

Gmail External Email Highlighter是由Matt Squirrell開發的Chrome擴展程式,該擴展的主要功能是“For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company.”。

擴展截圖

screenshot

下載Gmail External Email Highlighter擴展crx文件

下載Gmail External Email Highlighter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        If your company uses Gmail's web client to send emails, this extension will highlight email addresses that fall outside of rules you define.

This way your users can easily see if they're accidentally sending an email to someone outside of the company. 

Or you could just put your bosses email in to make sure you're never caught out by not noticing them in the CC box!

Email rules are set using regex.                    

擴展基本資訊

名稱 Gmail External Email Highlighter Gmail External Email Highlighter
ID oicgheeigckclpldjbmglhnndfmfilma
官方網址 https://chromewebstore.google.com/detail/gmail-external-email-high/oicgheeigckclpldjbmglhnndfmfilma
簡介 For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company.
檔案大小 6.91 KB
安裝次數 121
目前版本 1.0.1
更新時間 2016-02-25
上架時間 2016-02-25
評分 5.00/5 共 1 次評分
開發者 Matt Squirrell
付費類型 free
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail External Email Highlighter",
    "short_name": "External Email Highlighter",
    "description": "For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company.",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "css": [
                "rulesStyles.css"
            ],
            "js": [
                "runRulesCheck.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/mail.google.com\/*",
        "storage"
    ]
}