Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

Firefox 77 ignoring browser.tabs.showAudioPlayingIcon

  • 6 antwoorden
  • 3 hebben dit probleem
  • 45 weergaven
  • Laatste antwoord van 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?

Gekozen oplossing

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.

Dit antwoord in context lezen 👍 0

Alle antwoorden (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

Gekozen oplossing

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

Bewerkt door horonelius op

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.