Slack Block User
Block Slack User's Messages
Slack Block User란 무엇입니까?
Slack Block User은(는) Khoi-Phong Le에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block Slack User's Messages"입니다.
확장 프로그램 스크린샷
Slack Block User 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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 |
개인정보 보호 정책 페이지 URL | 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 } |