Censor Words

Censor Words

This extension will censor the input bad words.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Censor Words",
  "description": "This extension will censor the input bad words.",
  "version": "1.1",
  "icons": {
    "16": "/icons/icon-16.png",
    "32": "/icons/icon-32.png",
    "48": "/icons/icon-48.png",
    "128": "/icons/icon-128.png"
  },
  "action": {
    "default_title": "Censor Words",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/icons/icon-16.png",
      "24": "/icons/icon-24.png",
      "32": "/icons/icon-32.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}