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

  Ferdi.loop(getMessages);
};