EmotiClean

Replace bad words with emoji!

Vad är EmotiClean?

EmotiClean är en Chrome-tillägg utvecklad av http://catskull.net, och dess huvudfunktion är "Replace bad words with emoji!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner EmotiClean-förlängningens CRX-fil

Ladda ner EmotiClean-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn EmotiClean EmotiClean
ID eocdedidpfdncgnfadiknoncllmeohcd
Officiell webbadress https://chrome.google.com/webstore/detail/emoticlean/eocdedidpfdncgnfadiknoncllmeohcd
Beskrivning Replace bad words with emoji!
Filstorlek 36.92 KB
Antal Installationer 12
Aktuell Version 0.0.2
Senast Uppdaterad 2015-11-04
Publiceringsdatum 2015-11-04
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare http://catskull.net
Betalningssätt free
Hjälpsida URL https://github.com/catskull/EmotiClean/issues
Stödda Språk 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"
    ]
}