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
官方網址 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"
        }
    ]
}