Gmail GChat Emoji Fix

Reverting the emoji in gchat to not look like trash

Cos'è Gmail GChat Emoji Fix?

Gmail GChat Emoji Fix è un'estensione di Chrome sviluppata da mkhrenov34, e la sua funzione principale è "Reverting the emoji in gchat to not look like trash".

Scarica il file CRX dell'estensione Gmail GChat Emoji Fix

Scarica i file di estensione Gmail GChat Emoji Fix in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Don't like the new emoji in gchat? With all the weird gradients and other garbage? Change them back to the old, well-designed cute ones with this tiny extension!                    

Informazioni di Base sull'Estensione

Nome Gmail GChat Emoji Fix Gmail GChat Emoji Fix
ID baobkkdjlgkbnnfkcpabfpehlepikfog
URL Ufficiale https://chrome.google.com/webstore/detail/baobkkdjlgkbnnfkcpabfpehlepikfog
Descrizione Reverting the emoji in gchat to not look like trash
Dimensione del File 8.26 KB
Conteggio Installazioni 125
Versione Corrente 1.1
Ultimo Aggiornamento 2018-07-08
Data di Pubblicazione 2018-07-08
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore mkhrenov34
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail GChat Emoji Fix",
    "version": "1.1",
    "description": "Reverting the emoji in gchat to not look like trash",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/hangouts.google.com\/*",
                "https:\/\/mail.google.com\/*"
            ],
            "all_frames": true,
            "js": [
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ]
}