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是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Search webpages for content for webhooks and send a delete request to each of them”。

扩展截图

screenshot

下载Type 45 Webhook Destroyer扩展crx文件

下载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"
        }
    ]
}