Trumpify

Trumpify

Replace all images with Donald Trump

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Trumpify",
  "description": "Replace all images with Donald Trump",
  "manifest_version": 3,
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "scripts/Main.js"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "short_name": "Trumpify",
  "action": {
    "default_title": "Trumpify",
    "default_popup": "index.html"
  },
  "content_security_policy": {}
}