Name Swamp

Name Swamp

This extension takes the name of every presidential candidate and replaces it with something gross. I'm so sorry.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Name Swamp",
  "description": "This extension takes the name of every presidential candidate and replaces it with something gross. I'm so sorry.",
  "version": "4.0",
  "browser_action": {
    "default_icon": "icon16.png",
    "default_title": "Click here to mock our democratic process!"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}