Gmail GChat Emoji Fix

Reverting the emoji in gchat to not look like trash

Vad är Gmail GChat Emoji Fix?

Gmail GChat Emoji Fix är en Chrome-tillägg utvecklad av mkhrenov34, och dess huvudfunktion är "Reverting the emoji in gchat to not look like trash".

Ladda ner Gmail GChat Emoji Fix-förlängningens CRX-fil

Ladda ner Gmail GChat Emoji Fix-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Gmail GChat Emoji Fix Gmail GChat Emoji Fix
ID baobkkdjlgkbnnfkcpabfpehlepikfog
Officiell webbadress https://chrome.google.com/webstore/detail/baobkkdjlgkbnnfkcpabfpehlepikfog
Beskrivning Reverting the emoji in gchat to not look like trash
Filstorlek 8.26 KB
Antal Installationer 125
Aktuell Version 1.1
Senast Uppdaterad 2018-07-08
Publiceringsdatum 2018-07-08
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare mkhrenov34
Betalningssätt free
Stödda Språk 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"
        }
    ]
}