Trump is a Chump

Trump is a Chump

Replace the names of politicians with words of your own!

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 is a Chump",
  "version": "0.2.1",
  "description": "Replace the names of politicians with words of your own!",
  "content_scripts": [
    {
      "css": [
        "./content/style.css"
      ],
      "js": [
        "./content/main.js"
      ],
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "background/index.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "16": "logo_16.png",
    "48": "logo_48.png",
    "128": "logo_128.png"
  },
  "browser_action": {
    "default_popup": "./popup/index.html"
  },
  "options_page": "./options/index.html"
}