Let me tell you that the script numericable.fr worked well so far despite its not compatible with chrome. I want to know why it does not work. I uninstalled the application then reinstalled x notify chrome but to no avail. If someone can give me a solution. Thank you.
Is it possible to add other accounts than just Yahoo, Gmail, Hotmail and AOL. I have an account on Mail.com and would love if I could check my mail on there. Just wondering if this were possible. Thanks!
My Google+ script is not working for some time with Chrome and Opera Next (both use the Blink layout engine). Checked the version on the xn scripts page, which shows 2013-01-12, but the script's version actually states 2013-04-19. So I hoped updating would solve the issue, but no: Still not working. Logs in on (red) iconclick.
Hi, I noticed that the script for accessing Zoho mail, when the number of email is 10 or more, was displaying a wrong quantity. Checking the script I solved the problem modifying the following line:
var fnd=aData.match(/inboxCount:(\d+?)/);
to this:
var fnd=aData.match(/inboxCount:(\d+)/);
Eliminting the question mark "?" in the inner parenthesis solved the problem.