aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/zulip/webview.js
blob: 32cb0aa489a1e3f143a19e4ae8b53149c54f7499 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = Ferdium => {
  const getMessages = () => {
    const allMessages = Math.round(
      document.querySelectorAll(
        '#global_filters .top_left_all_messages .count .value',
      )[0].textContent,
    );
    Ferdium.setBadge(allMessages);
  };

  Ferdium.loop(getMessages);
};