aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/evernote/webview.js
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/evernote/webview.js')
-rw-r--r--recipes/evernote/webview.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/recipes/evernote/webview.js b/recipes/evernote/webview.js
new file mode 100644
index 0000000..60742ca
--- /dev/null
+++ b/recipes/evernote/webview.js
@@ -0,0 +1,18 @@
1const path = require('path');
2
3module.exports = (Franz, options) => {
4 const getMessages = () => {
5 const inbox = document.querySelector('.topbar-notificationsButton.has-newNotifications');
6 const passiveCount = inbox === null ? 0 : 1;
7 // set Franz badge
8 // updates => active unread count
9 // inbox => passive unread count
10 Franz.setBadge(0, passiveCount);
11 };
12
13 // inject franz.css stylesheet
14 Franz.injectCSS(path.join(__dirname, 'css', 'franz.css'));
15
16 // check for new messages every second and update Franz badge
17 Franz.loop(getMessages);
18};