Discord Batch Deleter

Batch Delete your Discord channel or IM messages

Discord Batch Deleterคืออะไร?

Discord Batch Deleter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://slackext.com และคุณลักษณะหลักของมันคือ "Batch Delete your Discord channel or IM messages"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Discord Batch Deleter

ดาวน์โหลดไฟล์ส่วนขยาย Discord Batch Deleter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension is a life saver for Discord admin, which hep you to batch delete the discord app messages.

As we know, the discord channel may generate lots of messages, e.g. from Discord Bot or members. Since Discord app deleting message require you to double confirm (which make sense), this will make Admin not easy to delete massive messages .

Just install this extension, then goto your channel, then open the extension, select some users or delete all, click, then leave.
Then this extension will delete the message one by one (about two per second).
The deleting progress can be found in the bottom bar.
You can also stop the deleting session by click the closed button or refresh the web page.

Enjoy and have fun! 🏝                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Discord Batch Deleter Discord Batch Deleter
ID lgmnomldfahgdpkbmlegninjpokgmoob
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/discord-batch-deleter/lgmnomldfahgdpkbmlegninjpokgmoob
คำอธิบาย Batch Delete your Discord channel or IM messages
ขนาดไฟล์ 203 KB
จำนวนการติดตั้ง 957
เวอร์ชันปัจจุบัน 0.1.3
อัปเดตครั้งล่าสุด 2022-08-03
วันที่เผยแพร่ 2022-08-03
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://slackext.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://slackext.com/discord-deleter
URL หน้าช่วยเหลือ https://slackext.com/discord-deleter
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Discord Batch Deleter",
    "version": "0.1.3",
    "description": "Batch Delete your Discord channel or IM messages",
    "action": {
        "default_popup": "popup.html",
        "default_title": "Discord Batch Deleter"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inject.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*.discord.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "logo-16x16.png",
        "48": "logo-48x48.png",
        "128": "logo-128x128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/slackext.com\/"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; connect-src https:\/\/slackext.com\/ http:\/\/*.googleapis.com\/ https:\/\/ssl.google-analytics.com\/ https:\/\/www.googletagmanager.com\/ https:\/\/*.youtube.com\/ https:\/\/*.github.com\/ https:\/\/*.googlevideo.com\/ https:\/\/*.doubleclick.net; style-src * 'unsafe-inline' 'self' blob:; img-src * 'self' data: https:;"
    }
}