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
Eメール [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"
        }
    ]
}