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

  Ferdi.loop(getMessages);
};