How to Disable Check for updates button in Help/About in firefox 5.0
Hi the user should not manually check for updates so we want to disable the Check for updates button also in Help/About.
Thanks in advanced
선택된 해결법
You can hide that button with code in userChrome.css below the @namespace line.
You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.
- ChromEdit Plus: http://webdesigns.ms11.net/chromeditp.html
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ #aboutDialog #updateBox { display:none!important; }
You can also choose to lock the related update pref(s) to false if you want to make sure.
See:
문맥에 따라 이 답변을 읽어주세요 👍 0모든 댓글 (3)
선택된 해결법
You can hide that button with code in userChrome.css below the @namespace line.
You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.
- ChromEdit Plus: http://webdesigns.ms11.net/chromeditp.html
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ #aboutDialog #updateBox { display:none!important; }
You can also choose to lock the related update pref(s) to false if you want to make sure.
See:
This worked - Thanks a lot :)
You're welcome