Type 45 Webhook Destroyer

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

Apa itu Type 45 Webhook Destroyer?

Type 45 Webhook Destroyer adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "Search webpages for content for webhooks and send a delete request to each of them".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Type 45 Webhook Destroyer

Unduh file ekstensi Type 45 Webhook Destroyer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Type 45 Webhook Destroyer Type 45 Webhook Destroyer
ID pjmjlilgonaenkggloeolfcaklaohfbp
URL Resmi https://chromewebstore.google.com/detail/type-45-webhook-destroyer/pjmjlilgonaenkggloeolfcaklaohfbp
Deskripsi Search webpages for content for webhooks and send a delete request to each of them
Ukuran File 3.61 KB
Jumlah Instalasi 12
Versi Saat Ini 1.2.0
Terakhir Diperbarui 2022-01-12
Tanggal Publikasi 2022-01-11
Pengembang Unknown
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/ItsAzaria/webhook-destroyer
URL Halaman Bantuan https://github.com/ItsAzaria/webhook-destroyer/issues
Bahasa yang Didukung 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"
        }
    ]
}