Replace words

Replace words

Blur the desired words to protect your personal data in the event of screen retransmission.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Replace words",
  "version": "1.0",
  "description": "",
  "icons": {
    "48": "icons/icon.png"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_title": "Replace words",
    "default_icon": "icons/icon.png",
    "default_popup": "popup/content.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "main.js"
      ],
      "all_frames": true
    }
  ]
}