aboutsummaryrefslogtreecommitdiffstats
path: root/clockify/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'clockify/webview.js')
-rw-r--r--clockify/webview.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/clockify/webview.js b/clockify/webview.js
new file mode 100644
index 0000000..5aab471
--- /dev/null
+++ b/clockify/webview.js
@@ -0,0 +1,11 @@
1"use strict";
2
3module.exports = Franz => {
4 const getMessages = function getMessages() {
5 const notifications = document.querySelectorAll('.notification--number');
6
7 Franz.setBadge(0, notifications.length >= 1 ? 1 : 0);
8 };
9
10 Franz.loop(getMessages);
11}; \ No newline at end of file