SafeGaze Browser Extension

SafeGaze detects and masks potentially haram & sensitive contents in your browser.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "SafeGaze Browser Extension",
  "version": "1.4.1",
  "description": "SafeGaze detects and masks potentially haram & sensitive contents in your browser.",
  "background": {
    "scripts": [
      "background/index.js"
    ],
    "persistent": false
  },
  "browser_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",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/index.js"
      ],
      "css": [
        "content/style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{09e14706-64bc-4cfa-a549-3d5e31a14446}"
    }
  }
}