Recensioni per Mute sites by default
Mute sites by default di abba23
Recensione di MMF
Valutata 5 su 5
di MMF, 7 anni faGreat! Originally thought that the speaker icon was enabled by this plugin: "I am only missing an option to remove the speaker icon as it gets hard to hit that in pinned or small tabs!"
The speaker icon is enabled by Firefox and is independent of this plugin. You can disable it via "browser.tabs.showAudioPlayingIcon" in the Firefox settings!
Also thanks to abba23 for responding in a helpful manner :)
The speaker icon is enabled by Firefox and is independent of this plugin. You can disable it via "browser.tabs.showAudioPlayingIcon" in the Firefox settings!
Also thanks to abba23 for responding in a helpful manner :)
Replica dello sviluppatore
pubblicato il 7 anni faUnfortunately the speaker icon is part of Firefox' mute functionality and appears automatically. As far as I know, it's not yet possible to disable it using WebExtensions.
You could hide it yourself though by adding something like this
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
.tabbrowser-tab :-moz-any(.tab-icon-sound,.tab-icon-overlay[muted]) {
display: none;
}
to your userChrome.css (https://www.userchrome.org).
You could hide it yourself though by adding something like this
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
.tabbrowser-tab :-moz-any(.tab-icon-sound,.tab-icon-overlay[muted]) {
display: none;
}
to your userChrome.css (https://www.userchrome.org).