Baldinator

Baldinator

Replaces the text 'Donald' with 'Bald', 'Trump' with 'Drumpf', and certain Pro-Trump hastags

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Baldinator",
  "version": "0.3",
  "description": "Replaces the text 'Donald' with 'Bald', 'Trump' with 'Drumpf', and certain Pro-Trump hastags",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "author": "Matt Gustin",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}