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 3 years have passed since last update.

ツイキャス配信で赤字になった時にデスクトップ通知する

Posted at

https://qiita.com/JeYA9JoHojZtZYG/items/b404178dde49a1422470 でツイキャスの閲覧者数を通知するためのブックマークレットを書いたが、同じように赤字通知も作った。

javascript:(new MutationObserver((t,e)=>{t.find(t=>t.target.classList.contains('tw-timeup-timer--will-end-soon'))&&new Notification('赤字です。')})).observe(document.querySelector('.tw-status-indicator'),{attributes:!0});

配信中は以下のように左上に配信時間が表示されている。

スクリーンショット 2020-02-05 12.12.31.png

配信は通常30分で切れるが残り時間が少なくなる(多分3分前)と配信時間表示が赤くなる。

スクリーンショット 2020-02-05 12.13.26.png

この要素は tw-status-indicator のclass属性がついているが、赤くなるときは tw-timeup-timer--will-end-soon が追加される。その変更をMutationObserverで拾った。

以下のように通知される。

スクリーンショット 2020-02-05 12.07.33.png
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?