Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

how to disable animated icons in firefox tabs

  • 5 个回答
  • 1 人有此问题
  • 3 次查看
  • 最后回复者为 cor-el

more options

A web site that I frequent has animated the icon that is embedded into the tab. (this is extremely annoying).

Is there a way to disable these animated icons embedded in the firefox tabs? forever?

thx

A web site that I frequent has animated the icon that is embedded into the tab. (this is extremely annoying). Is there a way to disable these animated icons embedded in the firefox tabs? forever? thx

所有回复 (5)

more options

I'm not aware of any built-in way to disable animated favicons/site icons.

One workaround for Adblock Plus users is to block the file using the blockable items list. It's common for site icons to have a .ico extension, but if it doesn't show up that way, I'd try .gif and see whether it shows up under that.

Does that work for you?

more options

That is an advanced setting; image.animation_mode = once

Type about:config<Enter> in the address bar. If a warning screen comes up, press the Be Careful button. This is where Firefox finds information it needs to run. At the top of the screen is a search bar. Type image.animation_mode and change the setting to once.

由NoahSUMO于修改

more options

You can create custom style rules to suppress favicons on tabs of sites that abuse them, but since there's no automatic way to detect animated vs. non-animated icons, this would involve listing the domains as you discover them.

I use the Stylish extension, but this also could be done with userChrome.css if you prefer.

I created a test rule using an annoying site someone mentioned in another thread:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
.tabbrowser-tab[image*="annoyingsite.zyx"] .tab-icon-image,
.tabbrowser-tab[image*="universitycoop.com"] .tab-icon-image 
{
  /* These rules remove the image complete and allow the text to use the space */
  display:none !important; 
  width:0 !important;
  margin: 0 !important;
  /* Alternately, these rules hide the image without changing the layout (disable the above if you use these) */
  /*
  opacity:0 !important;
  visibility:hidden !important; 
  */
}
more options

thx for the ideas - I tried "image.animation_mode = once". (I edited it and set "value"=once.) Firefox crashed after restart, but was subsequently ok. The setting was still "once" when I checked, but the undulating obnoxious icon is still undulating.

more options

image.animation_mode doesn't work for favicons, this only works fir GIF images on a web page.

You would have to block this specific favicon or disable (hide) favicons on tabs with code in userChrome.css or disable all website favicons.

  • browser.chrome.site_icons = false

This code misuses the throbber to replace a GIF favicon:

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

.tabbrowser-tab[image*=".gif"] .tab-throbber:not([busy]) {
 list-style-image: url("chrome://global/skin/icons/folder-item.png")!important;
 -moz-image-region: rect(0px,16px,16px,0px)!important;
 display:-moz-box!important;
}
.tabbrowser-tab[image*=".gif"] .tab-icon-image {display:none!important;}