Color Diff for Gmail™

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

Apa itu Color Diff for Gmail™?

Color Diff for Gmail™ adalah ekstensi Chrome yang dikembangkan oleh Mikhail Nasyrov, dan fitur utamanya adalah "This extension colors source code's diff inline of an email.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Color Diff for Gmail™

Unduh file ekstensi Color Diff for Gmail™ dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Color Diff for Gmail™ Color Diff for Gmail™
ID ijpjalhclnijdndandfhhdgiiojhckde
URL Resmi https://chrome.google.com/webstore/detail/color-diff-for-gmail/ijpjalhclnijdndandfhhdgiiojhckde
Deskripsi This extension colors source code's diff inline of an email.
Ukuran File 6.33 KB
Jumlah Instalasi 107
Versi Saat Ini 0.1.6
Terakhir Diperbarui 2018-05-25
Tanggal Publikasi 2018-05-25
Penilaian 4.88/5 Total 8 Penilaian
Pengembang Mikhail Nasyrov
Tipe Pembayaran free
Situs Ekstensi https://github.com/mnasyrov/gcolordiff
Bahasa yang Didukung 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"
        }
    ]
}