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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "For highlighing email addresses in Gmail 'to' fields that don't fit certain rules - ie. that are being sent outside the company."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Gmail External Email Highlighter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    ]
}