The Dump Trump Club

The Dump Trump Club

A chrome extension that removes all mention of Donald Trump from every web page.We replace his name with one of our preferred terms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The Dump Trump Club",
  "version": "0.1",
  "manifest_version": 2,
  "description": "A chrome extension that removes all mention of Donald Trump from every web page.We replace his name with one of our preferred terms.",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}