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.

Discord Pop Up yellow box thing

  • 1 antwoord
  • 1 heeft dit probleem
  • 127 weergaven
  • Laatste antwoord van Wesley Branton

more options

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?
Gekoppelde schermafbeeldingen

Gekozen oplossing

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.

Dit antwoord in context lezen 👍 1

Alle antwoorden (1)

more options

Gekozen oplossing

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.