Gun = Murder Weapon

Gun = Murder Weapon

Replaces the word 'Gun' with the phrase 'Murder Weapon' any time it appears on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Gun = Murder Weapon",
  "description": "Replaces the word 'Gun' with the phrase 'Murder Weapon' any time it appears on the web.",
  "version": "0.1",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}