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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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