EmotiClean

Replace bad words with emoji!

Что такое EmotiClean?

EmotiClean - это расширение Chrome, разработанное http://catskull.net, и его основная функция - "Replace bad words with emoji!".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        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.                    

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

Название EmotiClean EmotiClean
ID eocdedidpfdncgnfadiknoncllmeohcd
Официальный URL https://chrome.google.com/webstore/detail/emoticlean/eocdedidpfdncgnfadiknoncllmeohcd
Описание Replace bad words with emoji!
Размер файла 36.92 KB
Количество установок 12
Текущая Версия 0.0.2
Последнее Обновление 2015-11-04
Дата публикации 2015-11-04
Рейтинг 5.00/5 Всего 2 оценок
Разработчик http://catskull.net
Тип оплаты free
URL страницы помощи https://github.com/catskull/EmotiClean/issues
Поддерживаемые языки 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"
    ]
}