WebEdit Pro

WebEdit Pro

Replace text in any websites, tailoring the content to your preferences

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.1.1",
  "manifest_version": 3,
  "options_page": "options.html",
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "./images/replace-icon-16.png",
    "32": "./images/replace-icon-32.png",
    "48": "./images/replace-icon-48.png",
    "128": "./images/replace-icon-128.png"
  },
  "name": "WebEdit Pro",
  "description": "Replace text in any websites, tailoring the content to your preferences",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "./background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "./content.js"
      ],
      "run_at": "document_end"
    }
  ]
}