aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/yandex-mail/webview.js
blob: fff460268276a14ae1a7b9aa2a35d6fa6691373d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = Ferdi => {
  const getMessages = () => {
    let count = 0;

    if (document.querySelectorAll('.mail-LabelList-Item_count').length > 1) {
      count = Ferdi.safeParseInt(document.querySelectorAll('.mail-LabelList-Item_count')[1].textContent);
    }

    Ferdi.setBadge(count);
  };

  Ferdi.loop(getMessages);
};