Porn Blocker

Porn Blocker

Block porn in Chrome with this simple, free extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Porn Blocker",
  "description": "Block porn in Chrome with this simple, free extension.",
  "version": "2.0.17",
  "icons": {
    "16": "assets/img/icon16.png",
    "48": "assets/img/icon48.png",
    "128": "assets/img/icon128.png"
  },
  "action": {
    "default_icon": "assets/img/icon16.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "service_worker.js"
  }
}