Slack Deleter

elegantly delete slack messages

Slack Deleterคืออะไร?

Slack Deleter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://slackext.com และคุณลักษณะหลักของมันคือ "elegantly delete slack messages"

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

screenshot
screenshot
screenshot

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

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

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

                        bulk clean your slack channel messages & files, rapidly and elegantly.

2022-12-20: fix permission, no need tabs

2022-07-12: Critical Bug fix for new Slack Web apps. 🚀

2021-04-23: critical bug fix: list messages with solid.

2020-05-29: Privacy!

2019-08-14: support new slack web app - slack.com/app/ ,PLEASE UPGRADE!


Supported features:
> 1. delete all message in your slack channel

> 2. delete by starred
You can choose to skip the starred messages when bulk deleting.

> 3.  delete by timeline 
You can choose to delete one year/month/week ago messages;
Or you can choose to delete today/this week or this month messages

> 4. delete by users 
select someone and delete all of them from your channel.

> 5. stop the deleting progress as need
Give you a progress to show the deleting process. Anytime you want to stop the deleting process, you just need to close the extension popup window.

 > 6. fetch all channel messages

Find more slack extensions in https://slackext.com/                    

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

ชื่อ Slack Deleter Slack Deleter
ID fojaboengkcdjplnfcocfnchkjdikfei
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/slack-deleter/fojaboengkcdjplnfcocfnchkjdikfei
คำอธิบาย elegantly delete slack messages
ขนาดไฟล์ 901 KB
จำนวนการติดตั้ง 5,405
เวอร์ชันปัจจุบัน 1.14.2
อัปเดตครั้งล่าสุด 2022-12-21
วันที่เผยแพร่ 2020-05-29
คะแนน 2.16/5 รวมทั้งหมด 55 คะแนน
ผู้พัฒนา https://slackext.com
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://slackext.com/deleter
URL หน้าช่วยเหลือ https://slackext.com/deleter
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.14.2",
    "name": "Slack Deleter",
    "manifest_version": 3,
    "description": "elegantly delete slack messages",
    "action": {
        "default_title": "Slack Deleter",
        "default_popup": "deleter-popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/inject.bundle.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "service_worker": "js\/background.bundle.js"
    },
    "content_scripts": [
        {
            "persistent": true,
            "matches": [
                "https:\/\/*.slack.com\/*"
            ],
            "js": [
                "js\/content.bundle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/slackext.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; connect-src https:\/\/slackext.com https:\/\/ssl.google-analytics.com\/; style-src * 'unsafe-inline' 'self' blob:; img-src * 'self' data: https:;"
    }
}