aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/slite/webview.js
blob: d54b2d36d011ba35a8751879f4526a7989ffc815 (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = Ferdi => {
  const getMessages = () => {
    const element = document.querySelector("#app button[data-test-id='notificationsCount']");
    Ferdi.setBadge(element ? Ferdi.safeParseInt(element.innerText) : 0);
  };

  Ferdi.loop(getMessages);
};