Gmail Domain Highlighter

Visually indicates the type of email domain in Gmail.

Wat is Gmail Domain Highlighter?

Gmail Domain Highlighter is een Chrome-extensie ontwikkeld door berndverst, en de belangrijkste functie is "Visually indicates the type of email domain in Gmail.".

Download het CRX-bestand van de extensie Gmail Domain Highlighter

Download Gmail Domain Highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Gmail Domain Highlighter Gmail Domain Highlighter
ID ajfgpjfndlbicmphdbgbhcfjmmbkcbpa
Officiële URL https://chrome.google.com/webstore/detail/gmail-domain-highlighter/ajfgpjfndlbicmphdbgbhcfjmmbkcbpa
Beschrijving Visually indicates the type of email domain in Gmail.
Bestandsgrootte 34.06 KB
Aantal Installaties 34
Huidige Versie 0.0.1
Laatst Bijgewerkt 2015-08-29
Publicatiedatum 2015-08-29
Ontwikkelaar berndverst
Betalingswijze free
Extensiewebsite https://github.com/berndverst/gmail-domain-highlighter
Ondersteunde Talen 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"
    ]
}