Type 45 Webhook Destroyer

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

Co je Type 45 Webhook Destroyer?

Type 45 Webhook Destroyer je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Search webpages for content for webhooks and send a delete request to each of them“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Type 45 Webhook Destroyer

Stáhněte si soubory rozšíření Type 45 Webhook Destroyer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Type 45 Webhook Destroyer Type 45 Webhook Destroyer
ID pjmjlilgonaenkggloeolfcaklaohfbp
Oficiální URL https://chromewebstore.google.com/detail/type-45-webhook-destroyer/pjmjlilgonaenkggloeolfcaklaohfbp
Popis Search webpages for content for webhooks and send a delete request to each of them
Velikost souboru 3.61 KB
Počet instalací 12
Aktuální Verze 1.2.0
Poslední Aktualizace 2022-01-12
Datum Vydání 2022-01-11
Vývojář Unknown
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/ItsAzaria/webhook-destroyer
URL Stránky Nápovědy https://github.com/ItsAzaria/webhook-destroyer/issues
Podporované Jazyky 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"
        }
    ]
}