2

In Firefox, when I'm on Google Chat or Jitsi and share my screen, Firefox shows me this annoying floating bar containing:

You are sharing another application window

I can minimize but not close it. How do I permanently disable this message/window? And if that's not possible, is it possible to even close it?

Google Chat:

Bar in Google chat

Jitsi:

Bar in Jitsi

Destroy666
  • 12,350

1 Answers1

1

That popup is defined as webrtcIndicator.xhtml.

You can disable it through userChrome.css editing. A styling like this one should work:

@-moz-document url('chrome://browser/content/webrtcIndicator.xhtml') {
  :root {
    display: none !important;
  }
}

:root matches the entire document, so basically the <html> tag and then you hide it with classic display change.

Check this answer for details about the %APPDATA%\Mozilla\Firefox\Profiles\[profile-id]\chrome\userChrome.css file and how to make it editable in current Firefox version, assuming your system is Windows.

Destroy666
  • 12,350