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.                    

拡張機能の基本情報

名前 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"
    ]
}