Emoji For Hangouts

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

Emoji For Hangouts क्या है?

Emoji For Hangouts http://kmh.zone द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension to type emoji in Google Hangouts with emoji codes."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Emoji For Hangouts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Emoji For Hangouts Emoji For Hangouts
ID hnkjiiakgcinggbgmpdhggopmnmfhiea
आधिकारिक URL https://chrome.google.com/webstore/detail/emoji-for-hangouts/hnkjiiakgcinggbgmpdhggopmnmfhiea
विवरण A simple extension to type emoji in Google Hangouts with emoji codes.
फ़ाइल का आकार 56.49 KB
स्थापना संख्या 9,000
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2018-02-03
प्रकाशन तिथि 2018-02-03
रेटिंग 2.89/5 कुल 28 रेटिंग्स
डेवलपर http://kmh.zone
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}