Color Diff for Gmail™

This extension colors source code's diff inline of an email.

ما هو Color Diff for Gmail™؟

Color Diff for Gmail™ هو إضافة Chrome تم تطويرها بواسطة Mikhail Nasyrov، والميزة الرئيسية لها هي "This extension colors source code's diff inline of an email.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Color Diff for Gmail™

قم بتنزيل ملفات الامتداد Color Diff for Gmail™ بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Source code: https://github.com/mnasyrov/gcolordiff                    

معلومات أساسية عن التمديد

الاسم Color Diff for Gmail™ Color Diff for Gmail™
ID ijpjalhclnijdndandfhhdgiiojhckde
عنوان URL الرسمي https://chrome.google.com/webstore/detail/color-diff-for-gmail/ijpjalhclnijdndandfhhdgiiojhckde
الوصف This extension colors source code's diff inline of an email.
حجم الملف 6.33 KB
عدد التثبيتات 107
النسخة الحالية 0.1.6
آخر تحديث 2018-05-25
تاريخ النشر 2018-05-25
تقييم 4.88/5 مجموع تقييمات 8
المطور Mikhail Nasyrov
نوع الدفع free
موقع الإضافة https://github.com/mnasyrov/gcolordiff
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Color Diff for Gmail\u2122",
    "version": "0.1.6",
    "manifest_version": 2,
    "description": "This extension colors source code's diff inline of an email.",
    "permissions": [
        "https:\/\/mail.google.com\/*"
    ],
    "icons": {
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "gcolordiff.js"
            ],
            "css": [
                "gcolordiff.css"
            ],
            "run-at": "document_end"
        }
    ]
}