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

    Ferdium.setBadge(count);
  };

  Ferdium.loop(getMessages);
};