Annoying ping-pong ball

User Help for Mozilla Firefox
Post Reply
User avatar
kluless
Posts: 45
Joined: February 25th, 2004, 12:40 am

Annoying ping-pong ball

Post by kluless »

Is there any way to get rid of that annoying ping-pong ball when loading tabs?
User avatar
Reflective
Posts: 2283
Joined: February 15th, 2007, 11:13 am

Re: Annoying ping-pong ball

Post by Reflective »

Copy/paste into the location bar and hit Enter: about:config?filter=toolkit.cosmeticAnimations.enabled Toggle it to false

If you get a warning, confirm that you'll be careful so that you can proceed.
User avatar
kluless
Posts: 45
Joined: February 25th, 2004, 12:40 am

Re: Annoying ping-pong ball

Post by kluless »

That didn't work, it's still there :(
User avatar
Reflective
Posts: 2283
Joined: February 15th, 2007, 11:13 am

Re: Annoying ping-pong ball

Post by Reflective »

kluless wrote:That didn't work, it's still there :(
There's a list of other animations which you could try disabling in the same way in this article: https://www.ghacks.net/2017/07/06/how-t ... ox-photon/
User avatar
Happy112
Posts: 485
Joined: April 15th, 2017, 10:25 am
Location: Never-Never-Land

Re: Annoying ping-pong ball

Post by Happy112 »

Take a look at this thread, please :

https://support.mozilla.org/en-US/questions/1176586
morat
Posts: 6435
Joined: February 3rd, 2009, 6:29 pm

Re: Annoying ping-pong ball

Post by morat »

Try this:

Code: Select all

/* Firefox userChrome.css */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

.tab-throbber { visibility: hidden !important; }
http://kb.mozillazine.org/UserChrome.css
User avatar
kluless
Posts: 45
Joined: February 25th, 2004, 12:40 am

Re: Annoying ping-pong ball

Post by kluless »

morat wrote:Try this:

Code: Select all

/* Firefox userChrome.css */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

.tab-throbber { visibility: hidden !important; }
http://kb.mozillazine.org/UserChrome.css
That worked, thanks
FFman
Posts: 337
Joined: January 28th, 2012, 2:06 pm

Re: Annoying ping-pong ball

Post by FFman »

And if you want to remove it completely use:

Code: Select all

.tab-throbber {display: none !important; }
morat
Posts: 6435
Joined: February 3rd, 2009, 6:29 pm

Re: Annoying ping-pong ball

Post by morat »

In my version the tab text doesn't move after loading.
FFman
Posts: 337
Joined: January 28th, 2012, 2:06 pm

Re: Annoying ping-pong ball

Post by FFman »

That's odd, mine moves to the left taking up the space where the ping pong was.
morat
Posts: 6435
Joined: February 3rd, 2009, 6:29 pm

Re: Annoying ping-pong ball

Post by morat »

That's correct behavior.

What is the difference between visibility:hidden and display:none?
http://stackoverflow.com/questions/133051
FFman
Posts: 337
Joined: January 28th, 2012, 2:06 pm

Re: Annoying ping-pong ball

Post by FFman »

Actually it appears to remove the favicon as well.
When Amazon is loaded the favicon normally appears.
So I think I prefer it with the ping pong!!
Image
User avatar
kluless
Posts: 45
Joined: February 25th, 2004, 12:40 am

Re: Annoying ping-pong ball

Post by kluless »

The favicon does still appear with the 'hidden' version...
morat
Posts: 6435
Joined: February 3rd, 2009, 6:29 pm

Re: Annoying ping-pong ball

Post by morat »

The favicon appears for me with FFman's version if the site has a favicon.

Test page (site has a favicon)
http://www.mozillazine.org/

Test page (site has no favicon)
http://davidstockmanscontracorner.com/
FFman
Posts: 337
Joined: January 28th, 2012, 2:06 pm

Re: Annoying ping-pong ball

Post by FFman »

morat wrote:The favicon appears for me with FFman's version if the site has a favicon.
Test page (site has a favicon)
http://www.mozillazine.org/
Test page (site has no favicon)
http://davidstockmanscontracorner.com/
Yeah, you're right, I should have waited a bit longer for it to finish loading, it was a bit slow! :)
Post Reply