Trump Goggles

Trump Goggles

See the world like Trump does.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Trump Goggles",
  "short_name": "trumpgoggles",
  "description": "See the world like Trump does.",
  "version": "18.4.08",
  "browser_action": {
    "default_title": "Trump Goggles",
    "default_icon": {
      "19": "images/djt.png",
      "38": "images/djt.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "webRequest",
    "*://*/*",
    "storage",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "options_page": "options.html",
  "icons": {
    "16": "images/djt.png",
    "48": "images/djt.png",
    "128": "images/djt.png"
  }
}