Profanity-Blocker

Profanity-Blocker

An advanced bad-word-blocker Chrome extension that censors bad words and websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Profanity-Blocker",
  "version": "1.5",
  "icons": {
    "128": "images/logo128.png"
  },
  "description": "An advanced bad-word-blocker Chrome extension that censors bad words and websites.",
  "background": {
    "service_worker": "page.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*",
        "https://www.twitter.com/*",
        "https://www.instagram.com/*",
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "content_security_policy": {
    "script-src": "'self' object-src"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/logo.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs"
  ],
  "host_permissions": [
    "https://ajax.googleapis.com/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "warn/warn.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "incognito": "split"
}