HaramBlur

HaramBlur

Protect your privacy and uphold Islamic values by auto detecting & blurring images and videos of unwanted or impermissible content.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HaramBlur",
  "description": "Protect your privacy and uphold Islamic values by auto detecting & blurring images and videos of unwanted or impermissible content.",
  "version": "0.2.6",
  "permissions": [
    "storage",
    "offscreen",
    "contextMenus"
  ],
  "author": "[email protected]",
  "action": {
    "default_title": "HaramBlur",
    "default_popup": "src/popup.html"
  },
  "minimum_chrome_version": "109",
  "background": {
    "service_worker": "src/background.js"
  },
  "icons": {
    "48": "src/assets/hb-icon-48.png",
    "128": "src/assets/hb-icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "dist/content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/assets/*"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}