Not My President

Not My President

Changes all instances of Donald Trump's name to 'Not My President'

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Not My President",
  "description": "Changes all instances of Donald Trump's name to 'Not My President'",
  "version": "2.0",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}