EmotiClean

Replace bad words with emoji!

O que é EmotiClean?

EmotiClean é uma extensão do Chrome desenvolvida por http://catskull.net, e sua principal característica é "Replace bad words with emoji!".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão EmotiClean

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

                        A Chrome extension to replace bad words with emoji!

This extension will scan all words on a web page and look for some "naughty" words. If a "naughty" word is found, it will be replaced with an emoji which conveys a similar meaning.

Works for Facebook, Youtube comments, Twitter, and more!

This extension is open source! Download and help improve the code here: https://github.com/catskull/EmotiClean

This is a fork of a great open source extension SimpleProfanityFilter.                    

Informações Básicas da Extensão

Nome EmotiClean EmotiClean
ID eocdedidpfdncgnfadiknoncllmeohcd
URL Oficial https://chrome.google.com/webstore/detail/emoticlean/eocdedidpfdncgnfadiknoncllmeohcd
Descrição Replace bad words with emoji!
Tamanho do Arquivo 36.92 KB
Contagem de Instalações 12
Versão Atual 0.0.2
Última Atualização 2015-11-04
Data de Publicação 2015-11-04
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor http://catskull.net
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/catskull/EmotiClean/issues
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "EmotiClean",
    "version": "0.0.2",
    "description": "Replace bad words with emoji!",
    "icons": {
        "128": "icon.png",
        "48": "icon_small.png"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "filter.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs"
    ]
}