Regex Replace

Regex Replace

Regex replace. Replace anything on every site. Regex replace anywhere. Replace HTML. Use regular expression to Inject html,…

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 Replace",
  "version": "1.1",
  "icons": {
    "16": "assets/icons/16.png",
    "32": "assets/icons/32.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png"
  },
  "browser_action": {
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content-scripts.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "linux": "Ctrl+Shift+F",
        "mac": "Command+Shift+F",
        "windows": "Ctrl+Shift+F",
        "chromeos": "Ctrl+Shift+F"
      }
    }
  }
}