EmotiClean
Replace bad words with emoji!
Qu'est-ce que EmotiClean ?
EmotiClean est une extension Chrome développée par http://catskull.net, et sa fonction principale est "Replace bad words with emoji!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension EmotiClean
Téléchargez les fichiers d'extension EmotiClean au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | eocdedidpfdncgnfadiknoncllmeohcd |
URL Officiel | https://chrome.google.com/webstore/detail/emoticlean/eocdedidpfdncgnfadiknoncllmeohcd |
Description | Replace bad words with emoji! |
Taille du Fichier | 36.92 KB |
Nombre d'Installations | 12 |
Version Actuelle | 0.0.2 |
Dernière Mise à Jour | 2015-11-04 |
Date de Publication | 2015-11-04 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | http://catskull.net |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/catskull/EmotiClean/issues |
Langues Prises en Charge | 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" ] } |