Emoji For Hangouts

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

Emoji For Hangoutsとは何ですか?

Emoji For Hangoutsはhttp://kmh.zoneによって開発されたChromeの拡張機能で、その主な機能は「A simple extension to type emoji in Google Hangouts with emoji codes.」です。

拡張機能のスクリーンショット

screenshot

Emoji For Hangouts拡張機能のCRXファイルをダウンロード

Emoji For Hangouts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    }
}