aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/groupme
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/groupme')
-rw-r--r--recipes/groupme/package.json2
-rw-r--r--recipes/groupme/webview.js17
2 files changed, 15 insertions, 4 deletions
diff --git a/recipes/groupme/package.json b/recipes/groupme/package.json
index 0fa12ad..f282c9a 100644
--- a/recipes/groupme/package.json
+++ b/recipes/groupme/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "groupme", 2 "id": "groupme",
3 "name": "GroupMe", 3 "name": "GroupMe",
4 "version": "1.2.1", 4 "version": "1.3.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://web.groupme.com", 7 "serviceURL": "https://web.groupme.com",
diff --git a/recipes/groupme/webview.js b/recipes/groupme/webview.js
index 0d5afc3..0f0d3a6 100644
--- a/recipes/groupme/webview.js
+++ b/recipes/groupme/webview.js
@@ -1,12 +1,21 @@
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
4 // array-ify the list of conversations 9 // array-ify the list of conversations
5 const allConversations = [...document.querySelectorAll('#tray .tray-list .list-item')] 10 const allConversations = [
11 ...document.querySelectorAll('#tray .tray-list .list-item'),
12 ];
6 // for each conversation on the list... 13 // for each conversation on the list...
7 const filteredConversations = allConversations.filter(e => { 14 const filteredConversations = allConversations.filter(e => {
8 // keep it on the list if [1] it has unread messages (not .ng-hide), and [2] it isn't muted (not .overlay) 15 // keep it on the list if [1] it has unread messages (not .ng-hide), and [2] it isn't muted (not .overlay)
9 return (!e.innerHTML.includes('ng-hide') && !e.innerHTML.includes('overlay')) 16 return (
17 !e.innerHTML.includes('ng-hide') && !e.innerHTML.includes('overlay')
18 );
10 }); 19 });
11 const unreadConversations = filteredConversations.length; 20 const unreadConversations = filteredConversations.length;
12 21
@@ -15,4 +24,6 @@ module.exports = Ferdium => {
15 }; 24 };
16 25
17 Ferdium.loop(getMessages); 26 Ferdium.loop(getMessages);
27
28 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
18}; 29};