Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Discord Pop Up yellow box thing

  • 1 பதிலளி
  • 1 இந்த பிரச்சனை உள்ளது
  • 7 views
  • Last reply by Wesley Branton

When I join a discord call a yellow box pops up at the top of the screen. How do I disable it?

When I join a discord call a yellow box pops up at the top of the screen. How do I disable it?
Attached screenshots

தீர்வு தேர்ந்தெடுக்கப்பட்டது

The yellow warning box is to let users know that the website is using their microphone. This is to prevent a website from accessing a user's microphone without their knowledge.

There's no builtin option to disable this warning label. However, it can be disabled by adding the following code to a userChrome.css file:

#webrtcIndicator {
  display: none !important;
}

If you are not familiar with how to use a userChrome.css file to make modifications to the Firefox interface, check out the How to Create a userChrome.css File by userChrome.org.

Hope this helps.

Read this answer in context 👍 1

All Replies (1)

தீர்வு தேர்ந்தெடுக்கப்பட்டது

The yellow warning box is to let users know that the website is using their microphone. This is to prevent a website from accessing a user's microphone without their knowledge.

There's no builtin option to disable this warning label. However, it can be disabled by adding the following code to a userChrome.css file:

#webrtcIndicator {
  display: none !important;
}

If you are not familiar with how to use a userChrome.css file to make modifications to the Firefox interface, check out the How to Create a userChrome.css File by userChrome.org.

Hope this helps.