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