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文件

下载Skin Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        *****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"
    ]
}