Windows 10 reached EOS (end of support) on October 14, 2025. For more information, see this article.

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

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

Подробнее

Disable Add-ons

  • 1 ответ
  • 0 имеют эту проблему
  • 662 просмотра
  • Последний ответ от Mike Kaply

How to disable Firefox add-ons in order to block to install temporary extensions. I am generating policies via Firefox Policy generator. {

 "name": "myconfig",
 "time": "2025-12-14T13:17:27.479Z",
 "configuration": {
   "arrayfields": {},
   "checkboxes": {
     "BlockAboutAddons": true,
     "BlockAboutConfig": true,
     "BlockAboutProfiles": true
   },
   "input": {},
   "textareas": {},
   "select": {}
 }

}

How to disable Firefox add-ons in order to block to install temporary extensions. I am generating policies via Firefox Policy generator. { "name": "myconfig", "time": "2025-12-14T13:17:27.479Z", "configuration": { "arrayfields": {}, "checkboxes": { "BlockAboutAddons": true, "BlockAboutConfig": true, "BlockAboutProfiles": true }, "input": {}, "textareas": {}, "select": {} } }

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

In order to disable the "temporary addon" button, you would need to disable the installation of any addons.

To do that, you can use ExtensionSettings. (https://mozilla.github.io/policy-templates/#extensionsettings)

It doesn't look like policy generator supports any complex stuff, so after you create the JSON, add a section that looks like this:

"ExtensionSettings": {

 "*": {
   "installation_mode": "blocked"
 }

}

Изменено Mike Kaply

Задать вопрос

Для ответа на сообщения вы должны войти в свою учётную запись. Пожалуйста, задайте новый вопрос, если у вас ещё нет учётной записи.