11

In Chrome and Firefox, whenever I get a new email the inactive tab displays a very subtle notification. Basically, it just shines a little. In Chrome is shines from left to right as if someone is shining a flashlight on the tab.

It also does this when your are on the Twitter homepage, and a new tweet shows up.

I'm sure it is some Javascript function, but I can't seem to find it, because I don't think I am asking the question right.

Does anyone know how to do this?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
ar3
  • 3,883
  • 3
  • 21
  • 22
  • 2
    Maybe this - change the title - http://stackoverflow.com/questions/5644897/how-to-add-a-notification-on-the-app-tab-of-the-firefox-4 – planetjones Sep 28 '11 at 17:52
  • Yeah, that makes perfect sense...just change the title...and yes you are right, I have picked unclear words...for some reason, I couldn't seem to get my words right...thanks! – ar3 Sep 28 '11 at 18:04
  • Possible duplicate of [How to add a notification on the app tab of the Firefox?](https://stackoverflow.com/questions/5644897/how-to-add-a-notification-on-the-app-tab-of-the-firefox) – Brian Tompsett - 汤莱恩 May 06 '19 at 08:02

1 Answers1

11

I posted an answer to a similar question (thanks @Jacob) a while back (about Firefox, not Chrome). The answer works in Chrome as well.

Do you mean that you're building a website and you want to let Firefox notify the user on an event when the tab is pinned?

I'm fairly certain Firefox does it when the website's <title> is changed. For instance on Twitter, when there's a new tweet, the title is changed from "Twitter / Home" to "(1) Twitter / Home". Firefox notices this and notifies the user.

So really, any javascript function that changes <title> will make it work.

I hope that helps

Just noticed the post was linked in a comment, so thanks @planetjones too!

Community
  • 1
  • 1
adlawson
  • 6,303
  • 1
  • 35
  • 46
  • Thanks for the original answer...you'll get double points for one answer...I would mark this as a dupe, but I think the terminology is different enough to leave it as is... – ar3 Sep 28 '11 at 20:01