Type 45 Webhook Destroyer

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

Type 45 Webhook Destroyer là gì?

Type 45 Webhook Destroyer là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Search webpages for content for webhooks and send a delete request to each of them".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Type 45 Webhook Destroyer

Tải xuống các tệp mở rộng Type 45 Webhook Destroyer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Type 45 Webhook Destroyer Type 45 Webhook Destroyer
ID pjmjlilgonaenkggloeolfcaklaohfbp
URL Chính Thức https://chromewebstore.google.com/detail/type-45-webhook-destroyer/pjmjlilgonaenkggloeolfcaklaohfbp
Mô tả Search webpages for content for webhooks and send a delete request to each of them
Kích Thước Tệp 3.61 KB
Số Lần Cài Đặt 12
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2022-01-12
Ngày Phát Hành 2022-01-11
Nhà Phát Triển Unknown
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ItsAzaria/webhook-destroyer
URL Trang Trợ Giúp https://github.com/ItsAzaria/webhook-destroyer/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}