EmotiClean
Replace bad words with emoji!
EmotiClean란 무엇입니까?
EmotiClean은(는) http://catskull.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace bad words with emoji!"입니다.
확장 프로그램 스크린샷
EmotiClean 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |