EmotiClean

Replace bad words with emoji!

EmotiClean क्या है?

EmotiClean http://catskull.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replace bad words with emoji!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में EmotiClean एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}