Page 1 of 2

Script: Chatglove - Version 1.8.3

PostPosted: Mon Jan 20, 2014 2:08 pm
by dgz345
Chatglove
original by: Foxglove
contributing users name can be seen in the version history

What does it do?
  • Can detach the chat too allow you to drag the chat frame around the game page. It also makes your chat warm and fuzzy!
  • Searches for new chat messages

Where do I get it?
Install the userscript from here: http://tools.conquerclub.com/chatglove/
Should work on all browsers supporting Tampermonkey

!IMPORTANT!
you may have to reset chat location if you can't see the floating chat

User Guide
chatglove User Guide

Changes in version 1.8.3: by dgz345
- changed how new chats are showed in central command. new messages are now shown with a Blue asterisk (*)

show: version history


How do I use this?
  • Click the "detach chat" link located to the upper-right of the game chat log
  • Resize the window by clicking and dragging the bottom-right corner
  • Reposition the window by clicking and dragging the header bar
  • PROFIT!
  • (Click the "restore" link to return the chat log to its previous page position)
  • Check the "Options" in the menu

Detach link:

Image

chatglove in action!:

Click image to enlarge.
image


chatsniffer from the My Games page:

Image

Multitudinous menu options:

Image

Re: Script: Chatglove - Version 1.8.1

PostPosted: Fri Aug 22, 2014 12:03 am
by RobbieDub
I've switched to panels and the one thing I miss is the chatsniffer aspect of chatglove that just doesn't seem to be working right in conjunction with the panels. Is there any chance that aspect of chatglove can be improved or incorporated with panels?

Re: Script: Chatglove - Version 1.8.1

PostPosted: Fri Aug 22, 2014 1:27 pm
by dgz345
RobbieDub wrote:I've switched to panels and the one thing I miss is the chatsniffer aspect of chatglove that just doesn't seem to be working right in conjunction with the panels. Is there any chance that aspect of chatglove can be improved or incorporated with panels?


Hmm was working before I went back to work in Norway.
It should work. I'll be back in Sweden the 29th. I can look at it then when I have a computer. It should be easy fixable.
The console log should say what's wrong. But yea it will be fixed in 2 weeks.

Re: Script: Chatglove - Version 1.8.1

PostPosted: Fri Aug 22, 2014 2:19 pm
by Lindax
In panel mode I can't detach the chat at all....

Lx

Re: Script: Chatglove - Version 1.8.1

PostPosted: Fri Aug 22, 2014 3:36 pm
by dgz345
Lindax wrote:In panel mode I can't detach the chat at all....

Lx


I just tried and I was able to detach. Chrome android.
Could be that u are using FF 31

Re: Script: Chatglove - Version 1.8.1

PostPosted: Fri Aug 22, 2014 4:52 pm
by Lindax
dgz345 wrote:
Lindax wrote:In panel mode I can't detach the chat at all....

Lx


I just tried and I was able to detach. Chrome android.
Could be that u are using FF 31


Indeed.

Lx

Re: Script: Chatglove - Version 1.8.1

PostPosted: Tue Sep 16, 2014 9:04 pm
by RobbieDub
Hello,
I'm using Forefox 31 on Mac with panels and the Game Chat indicator always resets to every game having new chats when I log in. Is there a way to fix this?
Thanks, rob

Re: Script: Chatglove - Version 1.8.1

PostPosted: Tue Oct 21, 2014 10:46 am
by RobbieDub
still hoping you can update this script to make the chatsniffer remember which chats I have already read.

Re: Script: Chatglove - Version 1.8.2

PostPosted: Thu Dec 18, 2014 12:04 pm
by RobbieDub
I switch to chrome on my mac in the hopes that this tool would work but it doesn't seem to be functioning here either and I am the only one talking on this thread so maybe I'm the only one that likes this plugin and I should just give it up oh well this is my last try

Re: Script: Chatglove - Version 1.8.2

PostPosted: Sun Jan 11, 2015 2:23 pm
by Swimmerdude99
I like it, and it won't work for me anymore :(

Re: Script: Chatglove - Version 1.8.2

PostPosted: Mon Jan 12, 2015 11:52 am
by dgz345
swimmerdude99 wrote:I like it, and it won't work for me anymore :(


whats not working and how does it not work? it should be working

Re: Script: Chatglove - Version 1.8.2

PostPosted: Tue Jan 13, 2015 12:48 pm
by Swimmerdude99
dgz345 wrote:
swimmerdude99 wrote:I like it, and it won't work for me anymore :(


whats not working and how does it not work? it should be working

I actually just uninstalled and reinstalled and it may be working now... beforehand the chat would show new chat but then there wouldn't be any new chat. And I don't clear cookies or cache so I know that wasn't the issue

Re: Script: Chatglove - Version 1.8.2

PostPosted: Wed Jan 14, 2015 8:33 am
by dgz345
swimmerdude99 wrote:
dgz345 wrote:
swimmerdude99 wrote:I like it, and it won't work for me anymore :(


whats not working and how does it not work? it should be working

I actually just uninstalled and reinstalled and it may be working now... beforehand the chat would show new chat but then there wouldn't be any new chat. And I don't clear cookies or cache so I know that wasn't the issue


okay good to know!

Re: Script: Chatglove - Version 1.8.3

PostPosted: Wed Jan 28, 2015 12:08 am
by Doc_Brown
Not so sure about this latest update. That blue asterisk is really tough to see. How about a white chat icon like this:
Image
(sized down quite a bit of course)

Re: Script: Chatglove - Version 1.8.3

PostPosted: Mon Feb 22, 2021 12:18 pm
by IcePack
Is there a way to make it ignore the snap's from you / teammates so its not constantly saying theres chat when its just snaps?

Re: Script: Chatglove - Version 1.8.3

PostPosted: Wed Feb 24, 2021 7:53 am
by dgz345
IcePack wrote:Is there a way to make it ignore the snap's from you / teammates so its not constantly saying theres chat when its just snaps?


looks like that was already programmed for BOB snaps. but not for new panel snaps.

is anyone still using BOB?

You could change it by changing row 735 from
Code: Select all
 if(line.indexOf(": snap ::")>=0) {

to
Code: Select all
if(line.indexOf('class="snapshot"')>=0) {


Should maybe hopfully work :roll:

Re: Script: Chatglove - Version 1.8.3

PostPosted: Thu Feb 25, 2021 12:28 pm
by IcePack
dgz345 wrote:
IcePack wrote:Is there a way to make it ignore the snap's from you / teammates so its not constantly saying theres chat when its just snaps?


looks like that was already programmed for BOB snaps. but not for new panel snaps.

is anyone still using BOB?

You could change it by changing row 735 from
Code: Select all
 if(line.indexOf(": snap ::")>=0) {

to
Code: Select all
if(line.indexOf('class="snapshot"')>=0) {


Should maybe hopfully work :roll:


Nope still seems to be picking up snaps, can't tell if its others or my own just yet

Re: Script: Chatglove - Version 1.8.3

PostPosted: Thu Feb 25, 2021 12:41 pm
by Extreme Ways
I personally either don't notice or don't have this problem. I'm on FF.

Re: Script: Chatglove - Version 1.8.3

PostPosted: Thu Feb 25, 2021 12:56 pm
by IcePack
Extreme Ways wrote:I personally either don't notice or don't have this problem. I'm on FF.


I'm on chrome, and everytime the number slowly grows and i click it, just showing me snaps very rarely is it chat.

Re: Script: Chatglove - Version 1.8.3

PostPosted: Fri Feb 26, 2021 2:25 pm
by Extreme Ways
IcePack wrote:
Extreme Ways wrote:I personally either don't notice or don't have this problem. I'm on FF.


I'm on chrome, and everytime the number slowly grows and i click it, just showing me snaps very rarely is it chat.

I can attest that I havent had a number grow for Game 20699476 (CK's turn), but I do sometimes have random unreads of my own since I chatted in different tabs.

I also only have about 12 games going on so if I notice it's looking at games that dont have any new chat, I just mark all as read. Difficult to troubleshoot this is.

Re: Script: Chatglove - Version 1.8.3

PostPosted: Thu Mar 04, 2021 5:18 am
by dgz345
Well are anyone running old man BOBS? perhaps?

Re: Script: Chatglove - Version 1.8.3

PostPosted: Thu Mar 04, 2021 5:44 am
by Extreme Ways
I'm not using BOB, just panel interface.

Re: Script: Chatglove - Version 1.8.3

PostPosted: Thu Mar 04, 2021 9:22 am
by IcePack
No Bob here. Held on forever but now no

Re: Script: Chatglove - Version 1.8.3

PostPosted: Thu Mar 04, 2021 6:19 pm
by dgz345
quess ill have to check more when i have time...

Re: Script: Chatglove - Version 1.8.3

PostPosted: Fri Mar 05, 2021 1:55 pm
by IcePack
Yeah, I'm still getting notified for both my and my teammates snaps, even after i viewed them both they both popped back up. It counts down from 2 to 1 temporarily, but then went back up to 2. same games, repeating. Not just these two like its a bug for these two games specifically, but using these two as examples. clearly only snaps are taking place, and they are returning without new snaps or chats on the game chat counter