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