Emojify Everything

There aren't enough emojis in your websites. This extension fixes that.

O que é Emojify Everything?

Emojify Everything é uma extensão do Chrome desenvolvida por jasonetco, e sua principal característica é "There aren't enough emojis in your websites. This extension fixes that.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Emojify Everything

Baixe arquivos de extensão Emojify Everything 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

                        Replaces words in the webpages you visit with the corresponding emoji. You will either absolutely love or absolutely hate this.                    

Informações Básicas da Extensão

Nome Emojify Everything Emojify Everything
ID hkahpmfkdfeceiiklfbkalcpbceccjco
URL Oficial https://chromewebstore.google.com/detail/emojify-everything/hkahpmfkdfeceiiklfbkalcpbceccjco
Descrição There aren't enough emojis in your websites. This extension fixes that.
Tamanho do Arquivo 36.48 KB
Contagem de Instalações 39
Versão Atual 1.1.5
Última Atualização 2017-03-19
Data de Publicação 2017-03-18
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor jasonetco
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/JasonEtco/emojify-everything
URL da Página de Ajuda https://github.com/JasonEtco/emojify-everything/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.1.5",
    "minimum_chrome_version": "49",
    "name": "Emojify Everything",
    "short_name": "Emojification",
    "description": "There aren't enough emojis in your websites. This extension fixes that.",
    "author": "Jason Etcovitch",
    "homepage_url": "https:\/\/github.com\/JasonEtco\/emojify-everything",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Emojify Everything",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/simpleEmojis.js",
                "js\/emojis.js",
                "main.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}