aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/yahoo-mail/webview.js
blob: fc74834e957fb7983fbaa1fff7fdd3d67e83d9bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
function _interopRequireDefault(obj) {
  return obj && obj.__esModule ? obj : { default: obj };
}

const _path = _interopRequireDefault(require('path'));

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);

  Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
};