Regex Text Replacer

Regex Text Replacer

Specify regex patterns of text to match and replace in the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Regex Text Replacer",
  "description": "Specify regex patterns of text to match and replace in the page.",
  "version": "0.2",
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_idle"
    }
  ]
}