0
0

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.

ChatWorkでTo:が自分の時だけ未読数を表示させる

0
Last updated at Posted at 2015-04-07

js

setInterval(function () {
  // ページタイトルセット
  document.title = 'Silent ChatWork';

  // 左カラムの未読数を表示しない。(自分宛ては表示する)
  $('li ._unreadBadge.unread').css('display', 'none');

  // 左カラム、上の未読件数の合計も表示しない。(自分宛ては表示する)
  $('#_chatUnreadStatus').css('display', 'none');
}, 10000); // 10秒毎。

これをjs consoleで実行するとタイトルの通り。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?