Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

Firefox 77 ignoring browser.tabs.showAudioPlayingIcon

  • 6 odpovedí
  • 3 majú tento problém
  • 40 zobrazení
  • Posledná odpoveď 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?

Vybrané riešenie

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.

Čítať túto odpoveď v kontexte 👍 0

Všetky odpovede (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

Vybrané riešenie

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

Upravil(a) horonelius dňa

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.