aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/kaizala
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/kaizala')
-rw-r--r--recipes/kaizala/index.js13
-rw-r--r--recipes/kaizala/package.json2
-rw-r--r--recipes/kaizala/webview.js8
3 files changed, 17 insertions, 6 deletions
diff --git a/recipes/kaizala/index.js b/recipes/kaizala/index.js
index 425683a..0f18b4f 100644
--- a/recipes/kaizala/index.js
+++ b/recipes/kaizala/index.js
@@ -1,5 +1,8 @@
1module.exports = (Ferdium) => class Messenger extends Ferdium { 1module.exports = Ferdium =>
2 overrideUserAgent() { 2 class Messenger extends Ferdium {
3 return window.navigator.userAgent.replace(/(Ferdium|Electron)\/\S+ \([^)]+\)/g, '').trim(); 3 overrideUserAgent() {
4 } 4 return window.navigator.userAgent
5}; 5 .replaceAll(/(Ferdium|Electron)\/\S+ \([^)]+\)/g, '')
6 .trim();
7 }
8 };
diff --git a/recipes/kaizala/package.json b/recipes/kaizala/package.json
index 8ce9a08..c4b83d8 100644
--- a/recipes/kaizala/package.json
+++ b/recipes/kaizala/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "kaizala", 2 "id": "kaizala",
3 "name": "Microsoft Kaizala", 3 "name": "Microsoft Kaizala",
4 "version": "1.3.0", 4 "version": "1.4.0",
5 "license": "MIT", 5 "license": "MIT",
6 "repository": "https://github.com/meetfranz/recipe-microsoft-kaizala", 6 "repository": "https://github.com/meetfranz/recipe-microsoft-kaizala",
7 "config": { 7 "config": {
diff --git a/recipes/kaizala/webview.js b/recipes/kaizala/webview.js
index 7ac231e..df8897e 100644
--- a/recipes/kaizala/webview.js
+++ b/recipes/kaizala/webview.js
@@ -1,3 +1,9 @@
1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
6
1module.exports = Ferdium => { 7module.exports = Ferdium => {
2 const getMessages = () => { 8 const getMessages = () => {
3 const count = document.querySelectorAll('.unseen-msg-count').length; 9 const count = document.querySelectorAll('.unseen-msg-count').length;
@@ -5,4 +11,6 @@ module.exports = Ferdium => {
5 }; 11 };
6 12
7 Ferdium.loop(getMessages); 13 Ferdium.loop(getMessages);
14
15 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
8}; 16};