Type 45 Webhook Destroyer

Type 45 Webhook Destroyer

Search webpages for content for webhooks and send a delete request to each of them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Type 45 Webhook Destroyer",
  "description": "Search webpages for content for webhooks and send a delete request to each of them",
  "version": "1.2.0",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://discord.com/api/webhooks/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "webhook-nuker.js"
      ],
      "run_at": "document_end"
    }
  ]
}