Replace Trump

Replace Trump

Replace Trump replaces the word 'Trump' with any word(s) you choose.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Replace Trump",
  "description": "Replace Trump replaces the word 'Trump' with any word(s) you choose.",
  "version": "1.2.3",
  "author": "Olu Omoniyi",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "short_name": "Replace Trump",
  "background": {
    "scripts": [
      "Resource.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "browser_action": {
    "default_icon": "images/icon16.png",
    "default_popup": "options.html",
    "default_title": "Replace Trump"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "Resource.js"
      ],
      "run_at": "document_end"
    }
  ]
}