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" ] } |