EmotiClean
Replace bad words with emoji!
Co to jest EmotiClean?
EmotiClean to rozszerzenie Chrome opracowane przez http://catskull.net, a jego główną funkcją jest „Replace bad words with emoji!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia EmotiClean
Pobierz pliki rozszerzeń EmotiClean w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | eocdedidpfdncgnfadiknoncllmeohcd |
Oficjalny URL | https://chrome.google.com/webstore/detail/emoticlean/eocdedidpfdncgnfadiknoncllmeohcd |
Opis | Replace bad words with emoji! |
Rozmiar pliku | 36.92 KB |
Liczba instalacji | 12 |
Aktualna Wersja | 0.0.2 |
Ostatnia Aktualizacja | 2015-11-04 |
Data Publikacji | 2015-11-04 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | http://catskull.net |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/catskull/EmotiClean/issues |
Obsługiwane Języki | 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" ] } |