TrashMay

TrashMay

Replaces images of Theresa May with pictures of trash. Because Theresa May = Trash May.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TrashMay",
  "description": "Replaces images of Theresa May with pictures of trash. Because Theresa May = Trash May.",
  "version": "1.1",
  "permissions": [
    "https://postimg.org/"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "trashmay.js"
      ],
      "run_at": "document_end"
    }
  ]
}