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.                    

Основная информация о расширении

Название Gmail Domain Highlighter Gmail Domain Highlighter
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"
    ]
}