aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/proton-mail/webview.js
blob: ed66db5bba75fc3e1eaf5532ad748d67c7e29da2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = Ferdi => {
  const getMessages = () => {
    const element = document.querySelector('.navigationItem-counter');
    if (!element) {
      return;
    }
    const text = element.innerText;
    const count = Ferdi.safeParseInt(text.substring(1, text.length - 1));
    Ferdi.setBadge(count);
  }

  Ferdi.loop(getMessages);
};