X Word Replacer

X Word Replacer

Quickly replacing words in web pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "X Word Replacer",
  "description": "Quickly replacing words in web pages",
  "version": "1.0.4.1",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "action": {
    "default_title": "X Word Replacer",
    "default_popup": "index.html",
    "default_icon": "images/icon_128.png"
  },
  "icons": {
    "128": "favicon.png"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/content-script.js"
      ],
      "css": [
        "content/styles.css"
      ]
    }
  ],
  "offline_enabled": true
}