搜索 | 用户支持

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

Learn More

I can't characterize websites because of the favicon overlaid by the speaker symbol.

  • 4 个回答
  • 1 人有此问题
  • 62 次查看
  • 最后回复者为 Mike

more options

Hi guys.

I can't characterize websites because of the favicon overlaid by the speaker symbol (directly in the YouTube tab).

Is there a way to display the speaker symbol and the favicon at the same time? Or not display the speaker symbol at all, because it is important for me to know which website is in the TAB. I don't need to see the speaker, but the favicon of the website. See attached screenshot.

Of course, the speaker icon only appears when audio is active on a particular website (for example, this applies to a YouTube website).

Thanks.

Mike


Firefox 89.0 (64-bit) Windows 10 (64-bit)

Hi guys. I can't characterize websites because of the favicon overlaid by the speaker symbol (directly in the YouTube tab). Is there a way to display the speaker symbol and the favicon at the same time? Or not display the speaker symbol at all, because it is important for me to know which website is in the TAB. I don't need to see the speaker, but the favicon of the website. See attached screenshot. Of course, the speaker icon only appears when audio is active on a particular website (for example, this applies to a YouTube website). Thanks. Mike --------------------------- Firefox 89.0 (64-bit) Windows 10 (64-bit)
已附加屏幕截图

由Mike于修改

被采纳的解决方案

This can be done if you're comfortable with using a userChrome.css file. (If you haven't done so before, here's an introduction to how to do so: https://www.userchrome.org/how-create-userchrome-css.html)

The code to bring back the favicon is:

  .tab-content .tab-icon-image {
    opacity: 1.0 !important;
  }

If you want to hide the speaker icon (it probably looks kind of messy when overlaid on the favicon) then:

  tab[soundplaying] .tab-icon-overlay {
    display: none !important;
  }

Related: https://support.mozilla.org/en-US/questions/1339041 (this is how I stopped the 'mute' icon from interfering with the favicon).

定位到答案原位置 👍 1

所有回复 (4)

more options
    • this post was deleted by the interviewer

由Mike于修改

more options

选择的解决方案

This can be done if you're comfortable with using a userChrome.css file. (If you haven't done so before, here's an introduction to how to do so: https://www.userchrome.org/how-create-userchrome-css.html)

The code to bring back the favicon is:

  .tab-content .tab-icon-image {
    opacity: 1.0 !important;
  }

If you want to hide the speaker icon (it probably looks kind of messy when overlaid on the favicon) then:

  tab[soundplaying] .tab-icon-overlay {
    display: none !important;
  }

Related: https://support.mozilla.org/en-US/questions/1339041 (this is how I stopped the 'mute' icon from interfering with the favicon).

more options

This is affected by the Density settings you can select on the Customize page. In Compact mode you only see the sound playing icon and not the website favicon. In Normal mode you see the favicon by default and the sound playing icon on hover, there is a secondary line that shows the 'playing' or 'muted' state since the icon is hidden by default.

more options

Well thank you @cor-el. It's true. After switching from Compact mode to Normal (adjusting the settings for the toolbars), the speaker symbol will change from favicon when you drag the mouse over the Youtube TAB. However, I would like to use Compact mode and at the same time see the favicon + speaker icon (or a similiar favicon for "playling" status) as before. This is because Normal mode shows larger TABs than Compact mode.

So... for my purpose, the first CSS code from @pg_78 helped. Thanks ! In this case, I see a favicon according to Youtube when playing a Youtube video - it's a symbol of a red speaker playing - it's probably the original favicon (sent from the Youtube website). So, I know that there is Youtube website on this TAB and at the same time that some video is being played there.

Thanks guys... thank you both for the quick reply.

由Mike于修改