Slack Block User

Block Slack User's Messages

ما هو Slack Block User؟

Slack Block User هو إضافة Chrome تم تطويرها بواسطة Khoi-Phong Le، والميزة الرئيسية لها هي "Block Slack User's Messages".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Slack Block User

قم بتنزيل ملفات الامتداد Slack Block User بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Get annoyed by some users or bot/apps on your slack workspace?  Use this extremely light-weight open-sourced extension to block them!

# To Block User
 - Select a user name in the message list to show up the user card, then click 'Block' (The one with evil icon)
 - The user's messages will be blocked immediately!

# To Unblock User go to Extension's Configuration 
- Right-click on the extension icon on the right top of browser -> Options
- Go to extension list -> Slack Block User -> Extension Options
- Select Workspace
- Click the username to unblock
- Reload the current workspace (if there is) to apply the unblocking

# New
## 1.1.5
- Immediately apply block
- Update button text when block user
- Improve rendering performance
- Rewrite and public source code
## 1.2.0
- block app's messages
- block messages in threads

## 1.2.2 
- Minor improvement 
- Merge https://github.com/phonglk/slack-block-user-extension/pull/7

## 1.2.4
- Remove tabs permission

## 1.3.1
- Update to work again

# Opensource
https://github.com/phonglk/slack-block-user-extension

TODO:
- upgrade ui
- block the user  in the left sidebar
- handle storage limitation
- Immediately apply unblock                    

معلومات أساسية عن التمديد

الاسم Slack Block User Slack Block User
ID jllpceiekdglclebfdnhlbolhegodpld
عنوان URL الرسمي https://chromewebstore.google.com/detail/slack-block-user/jllpceiekdglclebfdnhlbolhegodpld
الوصف Block Slack User's Messages
حجم الملف 30.94 KB
عدد التثبيتات 154
النسخة الحالية 1.3.1
آخر تحديث 2020-10-23
تاريخ النشر 2019-07-30
تقييم 3.64/5 مجموع تقييمات 11
المطور Khoi-Phong Le
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://github.com/voz-living/chrome-extension-react/wiki/Privacy-Policy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slack Block User",
    "description": "Block Slack User's Messages",
    "version": "1.3.1",
    "permissions": [
        "storage",
        "https:\/\/*.slack.com\/*"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "32": "32.png",
        "64": "64.png",
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.slack.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}