Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

搜索 | 用户支持

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

详细了解

Firefox 77 ignoring browser.tabs.showAudioPlayingIcon

  • 6 个回答
  • 3 人有此问题
  • 93 次查看
  • 最后回复者为 Skaithakk

more options

So after updating to Firefox 77.0, I have noticed that despite having browser.tabs.showAudioPlayingIcon set to false, it Firefox insists on placing the audio icon in my tabs regardless.

Is there a way to get rid of it, perhaps with CSS or something?

So after updating to Firefox 77.0, I have noticed that despite having '''browser.tabs.showAudioPlayingIcon''' set to false, it Firefox insists on placing the audio icon in my tabs regardless. Is there a way to get rid of it, perhaps with CSS or something?

被采纳的解决方案

The browser.tabs.showAudioPlayingIcon pref is no longer supported in Firefox 77 (#1634012) as this is a pref that was only meant to control this feature during its development stage.
Once such a feature is working properly then the control pref is removed and the feature is enabled by default.
This is also happening with browser.urlbar.update1 prefs that were also removed in Firefox 77.

定位到答案原位置 👍 0

所有回复 (6)

more options

Hi, i also have noticed this issue too and tried to find a solution but no dice. im glad im not the only one noticing this hopefully they will address this.

more options

选择的解决方案

The browser.tabs.showAudioPlayingIcon pref is no longer supported in Firefox 77 (#1634012) as this is a pref that was only meant to control this feature during its development stage.
Once such a feature is working properly then the control pref is removed and the feature is enabled by default.
This is also happening with browser.urlbar.update1 prefs that were also removed in Firefox 77.

more options

So there is no way to disable it anymore?

more options
more options

So far this seems to work.

.tab-icon-overlay { display:none !important; }
.tab-icon-overlay[pinned] { display:none !important; } 
.tab-icon-overlay[crashed] { display:none !important; }
.tab-icon-sound { display:none !important; }

由horonelius于修改

more options

horonelius said

So far this seems to work. .tab-icon-overlay { display:none !important; } .tab-icon-overlay[pinned] { display:none !important; } .tab-icon-overlay[crashed] { display:none !important; } .tab-icon-sound { display:none !important; }

Awesome that worked! you guys are brilliant.