EmojiDisplay
This extension replaces emoticon text with the Apple Emojis.
O que é EmojiDisplay?
EmojiDisplay é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension replaces emoticon text with the Apple Emojis.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão EmojiDisplay
Baixe arquivos de extensão EmojiDisplay no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | EmojiDisplay |
ID | gichgflklefnkeffjbefmcagecfndbjl |
URL Oficial | https://chromewebstore.google.com/detail/emojidisplay/gichgflklefnkeffjbefmcagecfndbjl |
Descrição | This extension replaces emoticon text with the Apple Emojis. |
Tamanho do Arquivo | 18.6 MB |
Contagem de Instalações | 332 |
Versão Atual | 0.1 |
Última Atualização | 2018-11-19 |
Data de Publicação | 2018-11-14 |
Classificação | 2.00/5 Total de 6 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Site da Extensão | http://www.ranjotsingh.com |
Idiomas Suportados | 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" } ] } |