Emoji For Hangouts

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

Was ist Emoji For Hangouts?

Emoji For Hangouts ist eine Chrome-Erweiterung, die von http://kmh.zone entwickelt wurde, und ihr Hauptmerkmal ist "A simple extension to type emoji in Google Hangouts with emoji codes.".

Erweiterungsscreenshots

screenshot

Emoji For Hangouts-Erweiterungs-CRX-Datei herunterladen

Laden Sie Emoji For Hangouts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Emoji For Hangouts Emoji For Hangouts
ID hnkjiiakgcinggbgmpdhggopmnmfhiea
Offizielle URL https://chrome.google.com/webstore/detail/emoji-for-hangouts/hnkjiiakgcinggbgmpdhggopmnmfhiea
Beschreibung A simple extension to type emoji in Google Hangouts with emoji codes.
Dateigröße 56.49 KB
Installationsanzahl 9,000
Aktuelle Version 0.0.1
Letztes Update 2018-02-03
Veröffentlichungsdatum 2018-02-03
Bewertung 2.89/5 Insgesamt 28 Bewertungen
Entwickler http://kmh.zone
Zahlungsart free
Unterstützte Sprachen 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"
    }
}