Political Pokemon

This extension replaces all instances of the word 'tankie' with the word 'miltankie'
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Political Pokemon",
  "description": "This extension replaces all instances of the word 'tankie' with the word 'miltankie'",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}