aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/idobata/webview.js
blob: d30e2ad7a961ec146906c6e0651392836cc5c6a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module.exports = Ferdi => {
  const getMessages = () => {
    const title = document.querySelector('title').textContent.match(/\d+/);
    const count = title !== null ? title[0] : 0;

    Ferdi.setBadge(count);
  };

  Ferdi.loop(getMessages);
};