Gmail GChat Emoji Fix

Reverting the emoji in gchat to not look like trash

Co to jest Gmail GChat Emoji Fix?

Gmail GChat Emoji Fix to rozszerzenie Chrome opracowane przez mkhrenov34, a jego główną funkcją jest „Reverting the emoji in gchat to not look like trash”.

Pobierz plik CRX rozszerzenia Gmail GChat Emoji Fix

Pobierz pliki rozszerzeń Gmail GChat Emoji Fix w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa Gmail GChat Emoji Fix Gmail GChat Emoji Fix
ID baobkkdjlgkbnnfkcpabfpehlepikfog
Oficjalny URL https://chrome.google.com/webstore/detail/baobkkdjlgkbnnfkcpabfpehlepikfog
Opis Reverting the emoji in gchat to not look like trash
Rozmiar pliku 8.26 KB
Liczba instalacji 125
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2018-07-08
Data Publikacji 2018-07-08
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper mkhrenov34
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}