Safe Words

Takes out bad words from all your webpages

Safe Words란 무엇입니까?

Safe Words은(는) a young programmer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Takes out bad words from all your webpages"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Safe Words 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The best open source Chrome extension for profanity filtering and censoring!

Tired of seeing stupid YouTube comments?
Want to protect your children from bad words on the Internet?
Don't want to see obscene, foul or vulgar language?

Then this extension is for you!

Using a smart algorithm, the extension can filter/censor out 99% of bad words quite efficiently.

For example:
Asses, asssss => censored
but
assess, firetruck => is not

Works on Facebook, Twitter and YouTube!                    

확장 프로그램 기본 정보

이름 Safe Words Safe Words
ID mncnlkabidgflobdapkgmnlikkiilijj
공식 URL https://chromewebstore.google.com/detail/safe-words/mncnlkabidgflobdapkgmnlikkiilijj
설명 Takes out bad words from all your webpages
파일 크기 19.36 KB
설치 횟수 258
현재 버전 0.16
최근 업데이트 2016-06-24
출시 날짜 2016-06-24
평점 4.27/5 총 15 개의 평점
개발자 a young programmer
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Safe Words",
    "version": "0.16",
    "description": "Takes out bad words from all your webpages",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "script.js"
            ]
        }
    ]
}