Naughty Language Filter

Filters out obscene words on webpages and optionally mutes profanity on Netflix.

Naughty Language Filter란 무엇입니까?

Naughty Language Filter은(는) thedevcaleb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filters out obscene words on webpages and optionally mutes profanity on Netflix."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Naughty Language Filter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This "Naughty Language Filter" filters out obscene text on webpages and even has the additional feature of muting profanity in Netflix (by utilizing Netflix's subtitles). Essentially, a profanity filter that purifies your window into the internet, one word at a time!

●  Designed to have virtually no negative impact on performance.
●  The built-in bad word list contains most all words that would be considered as "bad words".
●  The Netflix video muting works by processing Netflix's subtitles (subtitles must be turned on within Netflix for this to work, but the extension will hide the subtitles via magic!). The Netflix video muting will not be perfect because it is directly dependent on the subtitles being accurate and timely.
●  Words can be added or deleted from the profanity word list as desired.
●  Profanity filtering can be turned off on a per-website basis.
●  Customize how words will be filtered (e.g. will it look like *****, or l----, or FILTERED). You choose!

The obscene text filtering works with essentially any webpage: Reddit, Youtube, Soundcloud, Google, Facebook, ... basically any website!                    

확장 프로그램 기본 정보

이름 Naughty Language Filter Naughty Language Filter
ID mlhblfcjgnoohcjkcmighdibcnaifmgo
공식 URL https://chromewebstore.google.com/detail/naughty-language-filter/mlhblfcjgnoohcjkcmighdibcnaifmgo
설명 Filters out obscene words on webpages and optionally mutes profanity on Netflix.
파일 크기 205 KB
설치 횟수 443
현재 버전 1.07
최근 업데이트 2018-04-23
출시 날짜 2018-04-23
평점 4.20/5 총 5 개의 평점
개발자 thedevcaleb
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Naughty Language Filter",
    "description": "Filters out obscene words on webpages and optionally mutes profanity on Netflix.",
    "version": "1.07",
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab"
    ]
}