aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/yandex-mail/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/yandex-mail/webview.js')
-rw-r--r--recipes/yandex-mail/webview.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/recipes/yandex-mail/webview.js b/recipes/yandex-mail/webview.js
new file mode 100644
index 0000000..2c039a1
--- /dev/null
+++ b/recipes/yandex-mail/webview.js
@@ -0,0 +1,13 @@
1module.exports = Ferdi => {
2 const getMessages = function getMessages() {
3 let count = 0;
4
5 if (document.getElementsByClassName('mail-LabelList-Item_count').length > 1) {
6 count = Ferdi.safeParseInt(document.getElementsByClassName('mail-LabelList-Item_count')[1].textContent);
7 }
8
9 Ferdi.setBadge(count);
10 };
11
12 Ferdi.loop(getMessages);
13};