EmotiClean
Replace bad words with emoji!
Was ist EmotiClean?
EmotiClean ist eine Chrome-Erweiterung, die von http://catskull.net entwickelt wurde, und ihr Hauptmerkmal ist "Replace bad words with emoji!".
Erweiterungsscreenshots
EmotiClean-Erweiterungs-CRX-Datei herunterladen
Laden Sie EmotiClean-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | eocdedidpfdncgnfadiknoncllmeohcd |
Offizielle URL | https://chrome.google.com/webstore/detail/emoticlean/eocdedidpfdncgnfadiknoncllmeohcd |
Beschreibung | Replace bad words with emoji! |
Dateigröße | 36.92 KB |
Installationsanzahl | 12 |
Aktuelle Version | 0.0.2 |
Letztes Update | 2015-11-04 |
Veröffentlichungsdatum | 2015-11-04 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | http://catskull.net |
Zahlungsart | free |
Hilfeseite URL | https://github.com/catskull/EmotiClean/issues |
Unterstützte Sprachen | 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" ] } |