aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/trello/webview.js
blob: 3207890c80475c3eccfcebfd235f448d10b17142 (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = Ferdium => {
  const getMessages = () => {
    const notifications = document.querySelectorAll('[class*=_3W-zkl4-bnVKzJ]');
    Ferdium.setBadge(0, notifications.length > 0 ? 1 : 0);
  };

  Ferdium.loop(getMessages);
};