搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

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; }
}