Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

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

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

Learn More

how to prevent someone from disabling or remove a good and useful add-ons?

  • 1 ответ
  • 4 имеют эту проблему
  • 1 просмотр
  • Последний ответ от cor-el

more options

hi, i have several PC's, all of them use firefox as default browser. there are good add-ons that we use, like anti porn or web filter, and i don't want someone to easily remove or disable them just with a single click, then install them again, and do it over again. i feel like it's a useless effort to put good add-on but someone can easily remove them.

is there any way to prevent someone from remove / disable add-on? i can only think a password protection feature on clicking a 'disable' or 'remove' button. i really wish this feature will available soon. thank you.

hi, i have several PC's, all of them use firefox as default browser. there are good add-ons that we use, like anti porn or web filter, and i don't want someone to easily remove or disable them just with a single click, then install them again, and do it over again. i feel like it's a useless effort to put good add-on but someone can easily remove them. is there any way to prevent someone from remove / disable add-on? i can only think a password protection feature on clicking a 'disable' or 'remove' button. i really wish this feature will available soon. thank you.

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

more options

You can hide a specific extension on the Tools > Add-ons > Extensions page with code in userContent.css (richlistitem[value="<extensions_id>"]), but you would still see it on the Help > Troubleshooting information page.

This for instance hides the DOM Inspector:

@-moz-document url(about:addons) { richlistitem[value="inspector@mozilla.org"]
 { display: none !important; }
}