EmotiClean
Replace bad words with emoji!
Apa itu EmotiClean?
EmotiClean adalah ekstensi Chrome yang dikembangkan oleh http://catskull.net, dan fitur utamanya adalah "Replace bad words with emoji!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi EmotiClean
Unduh file ekstensi EmotiClean dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | eocdedidpfdncgnfadiknoncllmeohcd |
URL Resmi | https://chrome.google.com/webstore/detail/emoticlean/eocdedidpfdncgnfadiknoncllmeohcd |
Deskripsi | Replace bad words with emoji! |
Ukuran File | 36.92 KB |
Jumlah Instalasi | 12 |
Versi Saat Ini | 0.0.2 |
Terakhir Diperbarui | 2015-11-04 |
Tanggal Publikasi | 2015-11-04 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | http://catskull.net |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://github.com/catskull/EmotiClean/issues |
Bahasa yang Didukung | 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" ] } |