Emoji For Hangouts

A simple extension to type emoji in Google Hangouts with emoji codes.

Co to jest Emoji For Hangouts?

Emoji For Hangouts to rozszerzenie Chrome opracowane przez http://kmh.zone, a jego główną funkcją jest „A simple extension to type emoji in Google Hangouts with emoji codes.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Emoji For Hangouts

Pobierz pliki rozszerzeń Emoji For Hangouts 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

                        Note: You must refresh all Gmail/Hangouts pages after installation for this extension to work.

Emoji For Hangouts allows you to type emoji in Google Hangouts with ease. You no longer have to scroll through a long list of emoji. Instead you can just use Discord-like shortcuts. For example,
:thinking: -> 🤔
:hamburger: -> 🍔
:cowboy: -> 🤠

This extension has no graphical interface - instead it just works in any Hangouts chat. If you type a partial emoji name, you can use the tab key to cycle through possibilities, sorted by frequency of use.

Source code is available on GitHub: https://github.com/kmh11/Emoji-For-Hangouts                    

Podstawowe informacje o rozszerzeniu

Nazwa Emoji For Hangouts Emoji For Hangouts
ID hnkjiiakgcinggbgmpdhggopmnmfhiea
Oficjalny URL https://chrome.google.com/webstore/detail/emoji-for-hangouts/hnkjiiakgcinggbgmpdhggopmnmfhiea
Opis A simple extension to type emoji in Google Hangouts with emoji codes.
Rozmiar pliku 56.49 KB
Liczba instalacji 9,000
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2018-02-03
Data Publikacji 2018-02-03
Ocena 2.89/5 Łącznie 28 Oceny
Deweloper http://kmh.zone
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Emoji For Hangouts",
    "description": "A simple extension to type emoji in Google Hangouts with emoji codes.",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/hangouts.google.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "emoji_codes.js",
                "emojityper.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}