aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/proton-mail/webview.js
blob: 8d85afd7ce4a5e172956d144f1e6f4b55850e930 (plain) (blame)
1
2
3
4
5
6
7
module.exports = Franz => {
    function getMessages() {
        const count = document.querySelector('.navigationItem-counter').innerText
        Franz.setBadge(count ? Number(count.substring(1, count.length - 1)) : 0)
    }
    Franz.loop(getMessages)
}