Trump or Hitler

Trump or Hitler

This simple Chrome extension swaps Donald Trump and Hitler, Scary.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Trump or Hitler",
  "version": "1.0",
  "description": "This simple Chrome extension swaps Donald Trump and Hitler, Scary.",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}