Don't Name The Shooter

Don't Name The Shooter

Automatically replaces any known names of gunmen involved in mass shootings to '[Name Redacted]'

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Don't Name The Shooter",
  "description": "Automatically replaces any known names of gunmen involved in mass shootings to '[Name Redacted]'",
  "version": "0.4",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "short_name": "Redact-Shooter-Names",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}