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

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

Learn More

Can't set network.trr.mode via user.js

  • 3 ответа
  • 1 имеет эту проблему
  • 19 просмотров
  • Последний ответ от rurbanowtreefox

more options

I work in a Windows enterprise environment that want to implement the following setting in Firefox 69.03: user_pref("network.trr.mode", "5");

I have a one line user.js file and place it where the prefs.js is located. The changed setting is never picked up by Firefox. What am I doing wrong? Thanks.

I work in a Windows enterprise environment that want to implement the following setting in Firefox 69.03: user_pref("network.trr.mode", "5"); I have a one line user.js file and place it where the prefs.js is located. The changed setting is never picked up by Firefox. What am I doing wrong? Thanks.

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

more options

hi, please try the following instead (no quotes around the integer):

user_pref("network.trr.mode", 5);
more options

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

more options

Thank you. That fixed it.