Przeszukaj pomoc

Unikaj oszustw związanych z pomocą.Nigdy nie będziemy prosić Cię o dzwonienie na numer telefonu, wysyłanie SMS-ów ani o udostępnianie danych osobowych. Zgłoś podejrzaną aktywność, korzystając z opcji „Zgłoś nadużycie”.

Learn More

Firefox 77 ignoring browser.tabs.showAudioPlayingIcon

  • 6 odpowiedzi
  • 3 osoby mają ten problem
  • 41 wyświetleń
  • Ostatnia odpowiedź od 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?

Wybrane rozwiązanie

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.

Przeczytaj tę odpowiedź w całym kontekście 👍 0

Wszystkie odpowiedzi (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

Wybrane rozwiązanie

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; }

Zmodyfikowany przez horonelius w dniu

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.