Porn / Adult Blocker, Block Sites - BlockerX

Porn / Adult Blocker, Block Sites - BlockerX

Porn blocker for Chrome. Can block over 2 Mn porn websites. Can also block sites as per your preferences.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extTitle__",
  "version": "3.3.6",
  "description": "__MSG_extSummary__",
  "manifest_version": 3,
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "default_locale": "en",
  "permissions": [
    "storage",
    "idle",
    "unlimitedStorage",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "BlockerX Porn Blocker",
    "default_icon": "/assets/icon16.png",
    "default_popup": "Popup/popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "ContentScripts/scriptOnStart.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "ContentScripts/scriptOnEnd.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.html",
        "*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "incognito": "split"
}