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

    Ferdi.setBadge(count);
  }

  Ferdi.loop(getMessages);
};