14
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【擬似ブロック】Slackで特定のユーザーをミュートにする方法

Last updated at Posted at 2019-04-18

(ブラウザでSlackを使っている方向けです。済みません)

Slackで大人数のコミュニティに属していると荒らしに近い行為をする人が少なからずいますよね。

反論しても自分が荒らしに加担することになるので無視が一番なのですが・・・見るに堪えません。

そんな時に役立つスクリプトを作りました。

Slackにはユーザー単位でのブロック機能が無いんですね・・

2019/4/18:GoogleChrome動作確認済み

#使用イメージ
ビフォアアフターをご覧ください。
##【before】赤枠の部分が消えます。
before.png

##【after】消えました。
after.png

#スクリプトはこちら
「ユーザー名」のところを書き換えてください。クォーテーションは要りませんよ。


javascript:(function(){$("body").on('DOMSubtreeModified propertychange', function() {$(".c-message__sender:contains(ユーザー名)").closest(".c-virtual_list__item").hide();});})();

#使用方法
ブックマークレットで使いましょう。
ブックマークレットの使用方法はこちらが詳しいです。
https://qiita.com/aqril_1132/items/b5f9040ccb8cbc705d04

ではでは。

14
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?