Color Diff for Gmail™

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

Was ist Color Diff for Gmail™?

Color Diff for Gmail™ ist eine Chrome-Erweiterung, die von Mikhail Nasyrov entwickelt wurde, und ihr Hauptmerkmal ist "This extension colors source code's diff inline of an email.".

Erweiterungsscreenshots

screenshot

Color Diff for Gmail™-Erweiterungs-CRX-Datei herunterladen

Laden Sie Color Diff for Gmail™-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Color Diff for Gmail™ Color Diff for Gmail™
ID ijpjalhclnijdndandfhhdgiiojhckde
Offizielle URL https://chrome.google.com/webstore/detail/color-diff-for-gmail/ijpjalhclnijdndandfhhdgiiojhckde
Beschreibung This extension colors source code's diff inline of an email.
Dateigröße 6.33 KB
Installationsanzahl 107
Aktuelle Version 0.1.6
Letztes Update 2018-05-25
Veröffentlichungsdatum 2018-05-25
Bewertung 4.88/5 Insgesamt 8 Bewertungen
Entwickler Mikhail Nasyrov
Zahlungsart free
Erweiterungswebsite https://github.com/mnasyrov/gcolordiff
Unterstützte Sprachen 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"
        }
    ]
}