EmojiDisplay

This extension replaces emoticon text with the Apple Emojis.

Что такое EmojiDisplay?

EmojiDisplay - это расширение Chrome, разработанное Unknown, и его основная функция - "This extension replaces emoticon text with the Apple Emojis.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения EmojiDisplay

Скачайте файлы расширений EmojiDisplay в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        EmojiDisplay is a Chrome extension, which replaces text versions of the emojis into images (for operating systems that do not automatically support this feature).

e.g. Special characters 😀, 😁, 😂, 😃, etc. are replaced with graphics of Apple Emojis.                    

Основная информация о расширении

Название EmojiDisplay EmojiDisplay
ID gichgflklefnkeffjbefmcagecfndbjl
Официальный URL https://chromewebstore.google.com/detail/emojidisplay/gichgflklefnkeffjbefmcagecfndbjl
Описание This extension replaces emoticon text with the Apple Emojis.
Размер файла 18.6 MB
Количество установок 332
Текущая Версия 0.1
Последнее Обновление 2018-11-19
Дата публикации 2018-11-14
Рейтинг 2.00/5 Всего 6 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения http://www.ranjotsingh.com
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "EmojiDisplay",
    "description": "This extension replaces emoticon text with the Apple Emojis.",
    "version": "0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "pics\/*.png",
        "res.json"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}