EmotiClean

Replace bad words with emoji!

Wat is EmotiClean?

EmotiClean is een Chrome-extensie ontwikkeld door http://catskull.net, en de belangrijkste functie is "Replace bad words with emoji!".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie EmotiClean

Download EmotiClean-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam EmotiClean EmotiClean
ID eocdedidpfdncgnfadiknoncllmeohcd
Officiële URL https://chrome.google.com/webstore/detail/emoticlean/eocdedidpfdncgnfadiknoncllmeohcd
Beschrijving Replace bad words with emoji!
Bestandsgrootte 36.92 KB
Aantal Installaties 12
Huidige Versie 0.0.2
Laatst Bijgewerkt 2015-11-04
Publicatiedatum 2015-11-04
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar http://catskull.net
Betalingswijze free
Help Pagina-URL https://github.com/catskull/EmotiClean/issues
Ondersteunde Talen 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"
    ]
}