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

    Ferdi.setBadge(count);
  }

  Ferdi.loop(getMessages);
};