Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

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

  • 1 trả lời
  • 4 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi 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.

Tất cả các câu trả lời (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; }
}