Trumpspeak by Justin Hook

Trumpspeak by Justin Hook

Replaces @realDonaldTrump's tweets with "[garbled]".

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Trumpspeak by Justin Hook",
  "short_name": "Trumpspeak",
  "homepage_url": "http://pushtrumpoffacliffagain.com/",
  "version": "1.0",
  "description": "Replaces @realDonaldTrump's tweets with \"[garbled]\".",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "icons": {
    "48": "icon.png",
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.twitter.com/*"
      ],
      "js": [
        "jquery-1.7.0.min.js",
        "script.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}