Slack Blocker

A tool that helps you block people on Slack.

Slack Blockerคืออะไร?

Slack Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Santiago De La Torre และคุณลักษณะหลักของมันคือ "A tool that helps you block people on Slack."

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

screenshot
screenshot
screenshot

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

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

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

                        Slack Blocker is finally here! 

Slack Blocker is a simple tool that will block and hide those unwanted messages in Slack to help you be more productive. All you have to do is enter the unique Slack Member ID -- using comma for multiple users -- save the changes and enjoy the quiet.

How to use it:

• After you have successfully installed it, you will see the icon of Slack Blocker next to the URL bar. If you click on it, a popup window will appear. Please, see the screenshots.

• In the popup window, you will see a text bar. Here is where you enter the Slack Member IDs. Slack Member IDs are in the form of C0K6F928Y, DFU7LHB8A. NOT HANDLES like @mcorey

You can get the User ID by following these steps:
1)Click on the user's/bot's name/photo from any channel
2) Select View Profile
3)The user/bot's profile will open on the right-hand side. 
4) Click on the three dots for more actions.
5) Select Copy Member ID (See screenshots)

You can also get the Slack Member IDs from the URL. See the screenshots.


• After you have entered all the Slack Member IDs that you wish to block, you will need to choose whether you want to Block Direct Messages/Channels or Delete Messages. If you choose the Block Direct Messages/Channels option, the DM/Channel will be hidden. If you choose the Delete Messages option, you will not see the blocked users’ messages anywhere.

• Lastly, click Save to save your preferences and all the slack tabs will refresh, in order to have the new preferences taking place.

Release v0.9.1 BETA
• Hides unwanted DM/Channels.
• Deletes messages everywhere.                    

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

ชื่อ Slack Blocker Slack Blocker
ID lmgikmlgjojdiaojphjlleadkagnhfnh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/slack-blocker/lmgikmlgjojdiaojphjlleadkagnhfnh
คำอธิบาย A tool that helps you block people on Slack.
ขนาดไฟล์ 245 KB
จำนวนการติดตั้ง 39
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2020-03-11
วันที่เผยแพร่ 2020-03-10
คะแนน 2.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Santiago De La Torre
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slack Blocker",
    "short_name": "Slack Blocker",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "A tool that helps you block people on Slack.",
    "icons": {
        "16": "icons\/blocked16.png",
        "48": "icons\/blocked48.png",
        "128": "icons\/blocked128.png",
        "256": "icons\/blocked256.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/blocked48.png",
        "default_title": "Block users on Slack",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.slack.com\/*"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/inject.js"
            ]
        }
    ]
}