Trump New Tab Page

Trump New Tab Page

This extension features a different image of Trump on your homepage every day. It also has some funny word replacements. MAGA!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "name": "Trump New Tab Page",
  "icons": {
    "16": "icons/button.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "web_accessible_resources": [
    "res/*",
    "icons/*"
  ],
  "description": "This extension features a different image of Trump on your homepage every day. It also has some funny word replacements. MAGA!",
  "homepage_url": "http://donaldjtrump.com/",
  "version": "0.9.2",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "webNavigation",
    "storage",
    "alarms"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://api.gettyimages.com; object-src 'self'"
}