Musk to Burns

Replaces the text 'elon musk' with 'mr burns'.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Musk to Burns",
  "version": "1.2",
  "description": "Replaces the text 'elon musk' with 'mr burns'.",
  "author": "SEN Funtimes",
  "icons": {
    "16": "burns_16.png",
    "32": "burns_32.png",
    "48": "burns_48.png",
    "128": "burns_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}