-
Notifications
You must be signed in to change notification settings - Fork 1
/
webview.js
43 lines (33 loc) · 905 Bytes
/
webview.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"use strict";
const {
remote
} = require('electron');
const path = require('path');
const webContents = remote.getCurrentWebContents();
const {
session
} = webContents;
window.onload = () => {
const title = document.querySelector('.window-title').innerHTML;
if (title && title.includes('Google Chrome 36+')) {
window.location.reload();
}
};
module.exports = Franz => {
session.flushStorageData();
session.clearStorageData({
storages: ['serviceworkers']
});
const getMessages = function getMessages() {
const elements = document.querySelectorAll('.CxUIE, .unread');
let count = 0;
for (let i = 0; i < elements.length; i += 1) {
if (elements[i].querySelectorAll('*[data-icon="muted"]').length === 0) {
count += 1;
}
}
Franz.setBadge(count);
};
Franz.injectCSS(path.join(__dirname, 'service.css'));
Franz.loop(getMessages);
};