Type 45 Webhook Destroyer

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

Cos'è Type 45 Webhook Destroyer?

Type 45 Webhook Destroyer è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Search webpages for content for webhooks and send a delete request to each of them".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Type 45 Webhook Destroyer

Scarica i file di estensione Type 45 Webhook Destroyer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Want to delete discord webhooks you find with little effort? This extension loads on each page request but does nothing until you hit the delete key. It will then search through the page and nuke any webhook it finds                    

Informazioni di Base sull'Estensione

Nome Type 45 Webhook Destroyer Type 45 Webhook Destroyer
ID pjmjlilgonaenkggloeolfcaklaohfbp
URL Ufficiale https://chromewebstore.google.com/detail/type-45-webhook-destroyer/pjmjlilgonaenkggloeolfcaklaohfbp
Descrizione Search webpages for content for webhooks and send a delete request to each of them
Dimensione del File 3.61 KB
Conteggio Installazioni 12
Versione Corrente 1.2.0
Ultimo Aggiornamento 2022-01-12
Data di Pubblicazione 2022-01-11
Sviluppatore Unknown
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ItsAzaria/webhook-destroyer
URL della Pagina di Aiuto https://github.com/ItsAzaria/webhook-destroyer/issues
Lingue Supportate en-GB
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"
        }
    ]
}