Trump To Hitler

Trump To Hitler

This extension replaces all mentions of Trump's name with Hitler's name for the current 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": "Trump To Hitler",
  "description": "This extension replaces all mentions of Trump's name with Hitler's name for the current page.",
  "version": "0.0.3",
  "icons": {
    "48": "hitler48.png",
    "128": "hitler128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}