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
官方網址 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"
    ]
}