“President” Trump

“President” Trump

Replaces instances of President Trump with “President” Trump (adds quotations)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "“President” Trump",
  "short_name": "Replaces instances of President Trump with “President” Trump (adds quotations",
  "version": "1.2",
  "description": "Replaces instances of President Trump with “President” Trump (adds quotations)",
  "icons": {
    "16": "images/logo_16.png",
    "48": "images/logo_48.png",
    "128": "images/logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "myscript.js"
      ],
      "run_at": "document_end"
    }
  ]
}