EmotiClean

Replace bad words with emoji!

Co je EmotiClean?

EmotiClean je rozšíření Chrome vyvinuté http://catskull.net, a jeho hlavní funkcí je „Replace bad words with emoji!“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření EmotiClean

Stáhněte si soubory rozšíření EmotiClean ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název EmotiClean EmotiClean
ID eocdedidpfdncgnfadiknoncllmeohcd
Oficiální URL https://chrome.google.com/webstore/detail/emoticlean/eocdedidpfdncgnfadiknoncllmeohcd
Popis Replace bad words with emoji!
Velikost souboru 36.92 KB
Počet instalací 12
Aktuální Verze 0.0.2
Poslední Aktualizace 2015-11-04
Datum Vydání 2015-11-04
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář http://catskull.net
Typ Platby free
URL Stránky Nápovědy https://github.com/catskull/EmotiClean/issues
Podporované Jazyky 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"
    ]
}