Type 45 Webhook Destroyer

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

Что такое Type 45 Webhook Destroyer?

Type 45 Webhook Destroyer - это расширение Chrome, разработанное Unknown, и его основная функция - "Search webpages for content for webhooks and send a delete request to each of them".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Type 45 Webhook Destroyer

Скачайте файлы расширений Type 45 Webhook Destroyer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Type 45 Webhook Destroyer Type 45 Webhook Destroyer
ID pjmjlilgonaenkggloeolfcaklaohfbp
Официальный URL https://chromewebstore.google.com/detail/type-45-webhook-destroyer/pjmjlilgonaenkggloeolfcaklaohfbp
Описание Search webpages for content for webhooks and send a delete request to each of them
Размер файла 3.61 KB
Количество установок 12
Текущая Версия 1.2.0
Последнее Обновление 2022-01-12
Дата публикации 2022-01-11
Разработчик Unknown
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/ItsAzaria/webhook-destroyer
URL страницы помощи https://github.com/ItsAzaria/webhook-destroyer/issues
Поддерживаемые языки 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"
        }
    ]
}