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 |
官方網址 | 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" ] } |