Emoji For Hangouts

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

Cos'è Emoji For Hangouts?

Emoji For Hangouts è un'estensione di Chrome sviluppata da http://kmh.zone, e la sua funzione principale è "A simple extension to type emoji in Google Hangouts with emoji codes.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Emoji For Hangouts

Scarica i file di estensione Emoji For Hangouts 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

                        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                    

Informazioni di Base sull'Estensione

Nome Emoji For Hangouts Emoji For Hangouts
ID hnkjiiakgcinggbgmpdhggopmnmfhiea
URL Ufficiale https://chrome.google.com/webstore/detail/emoji-for-hangouts/hnkjiiakgcinggbgmpdhggopmnmfhiea
Descrizione A simple extension to type emoji in Google Hangouts with emoji codes.
Dimensione del File 56.49 KB
Conteggio Installazioni 9,000
Versione Corrente 0.0.1
Ultimo Aggiornamento 2018-02-03
Data di Pubblicazione 2018-02-03
Valutazione 2.89/5 Totale 28 Valutazioni
Sviluppatore http://kmh.zone
Tipo di Pagamento free
Lingue Supportate 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"
    }
}