SafeGaze - Blur Haram Images

SafeGaze - Blur Haram Images

SafeGaze detects and masks potentially haram & sensitive contents in your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SafeGaze - Blur Haram Images",
  "version": "1.5.1",
  "description": "SafeGaze detects and masks potentially haram & sensitive contents in your browser.",
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "settings/popup.html",
    "default_icon": {
      "16": "logo/sg-logo-only.png",
      "32": "logo/sg-logo-only.png",
      "48": "logo/sg-logo-only.png",
      "128": "logo/sg-logo-only.png"
    }
  },
  "icons": {
    "16": "logo/sg-logo-only.png",
    "32": "logo/sg-logo-only.png",
    "48": "logo/sg-logo-only.png",
    "128": "logo/sg-logo-only.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/index.js"
      ],
      "css": [
        "content/style.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}