aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/yahoo-mail/webview.js
blob: 9ab9b6b8007af680a5f2faa5979fd0f9dac08f16 (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = (Ferdium) => {
  const getMessages = () => {
    const count = document.querySelector('a[data-test-folder-name="Inbox"] span[data-test-id="displayed-count"]').textContent;
    Ferdium.setBadge(count);
  };

  Ferdium.loop(getMessages);
};