Type 45 Webhook Destroyer

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

O que é Type 45 Webhook Destroyer?

Type 45 Webhook Destroyer é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Search webpages for content for webhooks and send a delete request to each of them".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Type 45 Webhook Destroyer

Baixe arquivos de extensão Type 45 Webhook Destroyer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Type 45 Webhook Destroyer Type 45 Webhook Destroyer
ID pjmjlilgonaenkggloeolfcaklaohfbp
URL Oficial https://chromewebstore.google.com/detail/type-45-webhook-destroyer/pjmjlilgonaenkggloeolfcaklaohfbp
Descrição Search webpages for content for webhooks and send a delete request to each of them
Tamanho do Arquivo 3.61 KB
Contagem de Instalações 12
Versão Atual 1.2.0
Última Atualização 2022-01-12
Data de Publicação 2022-01-11
Desenvolvedor Unknown
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/ItsAzaria/webhook-destroyer
URL da Página de Ajuda https://github.com/ItsAzaria/webhook-destroyer/issues
Idiomas Suportados 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"
        }
    ]
}