Skin Filter

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

Skin Filter란 무엇입니까?

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

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        *****There are bugs. This extension is under development.*****

This extension attempts to block skin.

This extension works by attempting to filter skin tone colored pixels. 

Please report all bugs. 

[email protected]                    

확장 프로그램 기본 정보

이름 Skin Filter Skin Filter
ID digkbjcglmbbipijiogdeegbfbepgdon
공식 URL https://chromewebstore.google.com/detail/skin-filter/digkbjcglmbbipijiogdeegbfbepgdon
설명 This extension filters images by analyzing their pixels, those within the human skin range are replaced by a grayscale tone
파일 크기 71.32 KB
설치 횟수 790
현재 버전 3.11
최근 업데이트 2017-11-05
출시 날짜 2017-11-05
평점 4.67/5 총 9 개의 평점
개발자 WebFilter
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Skin Filter",
    "short_name": "Skin Filter",
    "version": "3.11",
    "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"
    ]
}