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

下載Nudity Filter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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