Porn Site Blocker

Porn Site Blocker

This chrome extension is built for blocking porn sites and adult content. you can also blacklist domains and pages manually.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Porn Site Blocker",
  "version": "1.02",
  "description": "This chrome extension is built for blocking porn sites and adult content. you can also blacklist domains and pages manually.",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_icon": "images/icon16.png",
    "default_title": "Pron site blocker",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "style.css"
      ],
      "html": [
        "index.html"
      ]
    }
  ]
}