Replace Trump!

Replace Trump!

Replace text instances of Trump with a nickname of your choosing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": []
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "options.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "src/vendors/jquery-3.1.1.min.js",
        "src/vendors/jquery.mark.min.js",
        "src/settings.js",
        "src/replacement.js",
        "src/content_script_trump.js"
      ],
      "css": [
        "content_script_styles.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Replace text instances of Trump with a nickname of your choosing.",
  "manifest_version": 2,
  "name": "Replace Trump!",
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "version": "0.2"
}