aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/hangouts/webview.js
blob: f57864eb1c90524cc80e41b19c87a5d6c869578d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module.exports = Ferdium => {
  const getMessages = () => {
    // get unread messages
    const count = document.querySelector('#hangout-landing-chat iframe').contentWindow.document.querySelectorAll('.ee').length;

    // set Ferdium badge
    Ferdium.setBadge(count);
  };

  Ferdium.loop(getMessages);
};