Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

Discord Pop Up yellow box thing

  • 1 ответ
  • 1 имеет эту проблему
  • 123 просмотра
  • Последний ответ от 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?
Приложенные скриншоты

Выбранное решение

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.

Прочитайте этот ответ в контексте 👍 1

Все ответы (1)

more options

Выбранное решение

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.