Nudity Filter

This extension filters images by analyzing their pixels, those within the human skin range are replaced by a grayscale tone

Nudity Filter란 무엇입니까?

Nudity Filter은(는) WebFilter에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension filters images by analyzing their pixels, those within the human skin range are replaced by a grayscale tone"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Revolutionary nudity filter!!!
This filter works on each image. Areas of images that contain skin are grayed out.  This filter is NOT parental controls. This is for mature adults that just don’t want to browse the internet with semi-nude images all over the place.
Note: Due to the complex nature of detecting skin, there are many false positives.
Hovering over the top right corner of an image reveals a little eye. Clicking on the eye will reveal the original image.                    

확장 프로그램 기본 정보

이름 Nudity Filter Nudity Filter
ID ccjomchggbfngggjahebgahghoomiegm
공식 URL https://chromewebstore.google.com/detail/nudity-filter/ccjomchggbfngggjahebgahghoomiegm
설명 This extension filters images by analyzing their pixels, those within the human skin range are replaced by a grayscale tone
파일 크기 71.13 KB
설치 횟수 2,267
현재 버전 3.10
최근 업데이트 2017-11-01
출시 날짜 2017-11-01
평점 4.53/5 총 32 개의 평점
개발자 WebFilter
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nudity Filter",
    "short_name": "Nudity Filter",
    "version": "3.10",
    "manifest_version": 2,
    "description": "This extension filters images by analyzing their pixels, those within the human skin range are replaced by a grayscale tone",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon-d.png",
        "default_title": "Overlay Images",
        "default_popup": "popup.htm"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.htm",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js.js",
                "jquery.min.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "web_accessible_resources": [
        "eye.png",
        "undo.png"
    ]
}