EmojiDisplay
This extension replaces emoticon text with the Apple Emojis.
Что такое EmojiDisplay?
EmojiDisplay - это расширение Chrome, разработанное ranjotsingh, и его основная функция - "This extension replaces emoticon text with the Apple Emojis.".
Скачать файл CRX расширения EmojiDisplay
Скачайте файлы расширений EmojiDisplay в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension replaces emoticon text with the Apple Emojis.
Основная информация о расширении
Название | |
ID | doomojimaojclkcipjldpmdbiedgaoop |
Официальный URL | https://chrome.google.com/webstore/detail/emojidisplay/doomojimaojclkcipjldpmdbiedgaoop |
Описание | This extension replaces emoticon text with the Apple Emojis. |
Размер файла | 9.82 KB |
Количество установок | 15 |
Текущая Версия | 0.1 |
Последнее Обновление | 2017-11-02 |
Дата публикации | 2017-11-02 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | ranjotsingh |
Тип оплаты | free |
Официальный сайт расширения | https://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": [ "script.js" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |