Make America's Hands Tiny Again

Make America's Hands Tiny Again

Tired of reading about a certain presidential candidate? This extension replaces his name with his most distinguising feature.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Make America's Hands Tiny Again",
  "description": "Tired of reading about a certain presidential candidate? This extension replaces his name with his most distinguising feature.",
  "version": "0.2",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}