Nudity Filter

Nudity Filter

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

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "js": [
        "js.js",
        "jquery.min.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "eye.png",
    "undo.png"
  ]
}