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