aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/inoreader/webview.js
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-05-27 21:47:20 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-27 21:48:07 +0530
commit8cb32825c2095d1f10f6960507e04980700f7450 (patch)
treede31f7942c9612c427fab98e023a52b0f88c2a6c /recipes/inoreader/webview.js
parentRe-fetched zulip recipe from https://github.com/adambirds/recipe-zulip (diff)
downloadferdium-recipes-8cb32825c2095d1f10f6960507e04980700f7450.tar.gz
ferdium-recipes-8cb32825c2095d1f10f6960507e04980700f7450.tar.zst
ferdium-recipes-8cb32825c2095d1f10f6960507e04980700f7450.zip
Inoreader recipe from: https://github.com/annagrram/recipe-inoreader
Diffstat (limited to 'recipes/inoreader/webview.js')
-rw-r--r--recipes/inoreader/webview.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/recipes/inoreader/webview.js b/recipes/inoreader/webview.js
new file mode 100644
index 0000000..a05abe2
--- /dev/null
+++ b/recipes/inoreader/webview.js
@@ -0,0 +1,13 @@
1module.exports = (Franz) => {
2 const getMessages = () => {
3 const all_articles = document.querySelector('#unread_cnt_all_items')
4 if (!all_articles) return;
5
6 const unread_articles_cnt = Number(all_articles.textContent.split('+')[0])
7 if (!Number.isNaN(unread_articles_cnt)) {
8 Franz.setBadge(unread_articles_cnt);
9 }
10 };
11
12 Franz.loop(getMessages);
13}