EmotiClean
Replace bad words with emoji!
EmotiClean là gì?
EmotiClean là một tiện ích mở rộng Chrome được phát triển bởi http://catskull.net, và tính năng chính của nó là "Replace bad words with emoji!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng EmotiClean
Tải xuống các tệp mở rộng EmotiClean dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | eocdedidpfdncgnfadiknoncllmeohcd |
URL Chính Thức | https://chrome.google.com/webstore/detail/emoticlean/eocdedidpfdncgnfadiknoncllmeohcd |
Mô tả | Replace bad words with emoji! |
Kích Thước Tệp | 36.92 KB |
Số Lần Cài Đặt | 12 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2015-11-04 |
Ngày Phát Hành | 2015-11-04 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | http://catskull.net |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/catskull/EmotiClean/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |