aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/yandex-mail/webview.js
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2021-09-12 08:08:52 +0530
committerLibravatar GitHub <noreply@github.com>2021-09-12 02:38:52 +0000
commit416dbb944567306424fd02831e3f4f1dfeb71da1 (patch)
tree8526381354141b4b8b13d3fc41d811dc6556ac01 /recipes/yandex-mail/webview.js
parentNew recipe: 'mewe' (fixes #484) (#684) (diff)
downloadferdium-recipes-416dbb944567306424fd02831e3f4f1dfeb71da1.tar.gz
ferdium-recipes-416dbb944567306424fd02831e3f4f1dfeb71da1.tar.zst
ferdium-recipes-416dbb944567306424fd02831e3f4f1dfeb71da1.zip
New recipe: 'yandex-mail' (fixes #421) (#685)
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};