Discord Batch Deleter

Batch Delete your Discord channel or IM messages

Discord Batch Deleter란 무엇입니까?

Discord Batch Deleter은(는) https://slackext.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Batch Delete your Discord channel or IM messages"입니다.

확장 프로그램 스크린샷

screenshot

Discord Batch Deleter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:;"
    }
}