Make Trump Tweets Eight Again

Make Trump Tweets Eight Again

This also changes @POTUS tweets and allows it to work on Quote Tweets.

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 Trump Tweets Eight Again",
  "version": "2.1.7",
  "description": "This also changes @POTUS tweets and allows it to work on Quote Tweets.",
  "icons": {
    "128": "/img/logo.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/lib/randomColor.js",
        "/lib/jquery.min.js",
        "/lib/webx.js",
        "/js/cs.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "/lib/jquery.min.js",
      "/lib/webx.js",
      "/js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}