EmotiClean
Replace bad words with emoji!
什么是EmotiClean?
EmotiClean是由http://catskull.net开发的Chrome扩展程序,该扩展的主要功能是“Replace bad words with emoji!”。
扩展截图
下载EmotiClean扩展crx文件
下载EmotiClean扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | eocdedidpfdncgnfadiknoncllmeohcd |
官方URL | https://chrome.google.com/webstore/detail/emoticlean/eocdedidpfdncgnfadiknoncllmeohcd |
简介 | Replace bad words with emoji! |
文件大小 | 36.92 KB |
安装次数 | 12 |
当前版本 | 0.0.2 |
更新时间 | 2015-11-04 |
上架时间 | 2015-11-04 |
评分 | 5.00/5 共2次评分 |
开发者 | http://catskull.net |
付费类型 | free |
帮助页面URL | https://github.com/catskull/EmotiClean/issues |
支持的语言 | 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" ] } |