Purity Vision - NSFW AI Image Filter

Purity Vision - NSFW AI Image Filter

Filter NSFW images from the impure web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Purity Vision - NSFW AI Image Filter",
  "description": "Filter NSFW images from the impure web",
  "manifest_version": 3,
  "version": "1.3.2",
  "action": {
    "default_icon": "img/logo.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/logo-16.png",
    "48": "img/logo-48.png",
    "128": "img/logo-128.png"
  },
  "background": {
    "service_worker": "js/worker.js"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ]
}