EmotiClean
Replace bad words with emoji!
Cos'è EmotiClean?
EmotiClean è un'estensione di Chrome sviluppata da http://catskull.net, e la sua funzione principale è "Replace bad words with emoji!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione EmotiClean
Scarica i file di estensione EmotiClean in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | eocdedidpfdncgnfadiknoncllmeohcd |
URL Ufficiale | https://chrome.google.com/webstore/detail/emoticlean/eocdedidpfdncgnfadiknoncllmeohcd |
Descrizione | Replace bad words with emoji! |
Dimensione del File | 36.92 KB |
Conteggio Installazioni | 12 |
Versione Corrente | 0.0.2 |
Ultimo Aggiornamento | 2015-11-04 |
Data di Pubblicazione | 2015-11-04 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | http://catskull.net |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/catskull/EmotiClean/issues |
Lingue Supportate | 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" ] } |