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

搜索 | 用户支持

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

详细了解

Remove Get Add-ons Field

  • 3 个回答
  • 1 人有此问题
  • 4 次查看
  • 最后回复者为 cor-el

more options

I am using Firefox 42 ESR. The Get Add-ons field when activated freezes up my browser and once that happens it is stuck on this field every time I open Firefox. Is there a way to remove this button from the addons page with userchrome or usercontent? Thanks.

I am using Firefox 42 ESR. The Get Add-ons field when activated freezes up my browser and once that happens it is stuck on this field every time I open Firefox. Is there a way to remove this button from the addons page with userchrome or usercontent? Thanks.

所有回复 (3)

more options

The Get Add-ons is part of the Add-ons Manager.

Start Firefox in Safe Mode {web link} by holding down the <Shift> (Mac=Options) key, and then starting Firefox.

A small dialog should appear. Click Start In Safe Mode (not Refresh).

Type about:config<enter> in the address bar. If a warning screen comes up, press the I Accept the Risk button. At the top of the screen is a search bar. Type browser.startup.homepage

What is the value? Right-click and select Reset to restore its default value; about:home

Then restart Firefox.

more options
The Get Add-ons field when activated freezes up my browser and once that happens it is stuck on this field every time I open Firefox.

Had that issue myself until I hid the Get Add-ons menu item via userChrome.css . http://kb.mozillazine.org/UserChrome.css

Help > Troubleshooting Information -> Profile Folder - Open Folder

Once your Profile is open in Windows Explorer and you close Firefox, create a folder named chrome. Then create a text file using this code and save that text file as userContent.css - "Hide extensions for known file types" has to be disabled in Windows Folder Options or you are liable to end up with userContent.css.txt and Firefox won't use that file with the .txt added inadvertently.

This is the code you need in the userContent.css file.

@-moz-document url("about:addons") {
#category-discover { display:none!important; }
}

@-moz-document url("about:addons") {
#category-service {display:none!important; }
}

Works for me since the Add-ons Manager had that menu item added many versions ago,

more options

You can set this pref to an empty string value to prevent Firefox from connecting to the add-ons server.

  • extensions.getAddons.get.url = ""

You can open the about:config page via the location/address bar. You can accept the warning and click "I accept the risk!" to continue.