Type 45 Webhook Destroyer

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

Co to jest Type 45 Webhook Destroyer?

Type 45 Webhook Destroyer to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Search webpages for content for webhooks and send a delete request to each of them”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Type 45 Webhook Destroyer

Pobierz pliki rozszerzeń Type 45 Webhook Destroyer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Type 45 Webhook Destroyer Type 45 Webhook Destroyer
ID pjmjlilgonaenkggloeolfcaklaohfbp
Oficjalny URL https://chromewebstore.google.com/detail/type-45-webhook-destroyer/pjmjlilgonaenkggloeolfcaklaohfbp
Opis Search webpages for content for webhooks and send a delete request to each of them
Rozmiar pliku 3.61 KB
Liczba instalacji 12
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2022-01-12
Data Publikacji 2022-01-11
Deweloper Unknown
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ItsAzaria/webhook-destroyer
Adres URL Strony Pomocy https://github.com/ItsAzaria/webhook-destroyer/issues
Obsługiwane Języki 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"
        }
    ]
}