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 do I get rid of the "Get Add-ons" pane?

  • 4 个回答
  • 6 人有此问题
  • 1 次查看
  • 最后回复者为 the-edmeister

more options

How do I get rid of the "Get Add-ons" pane? FF3 provided an about:config variable to hide the annoying POS. Can I also have back the normal add-ons window.

How do I get rid of the "Get Add-ons" pane? FF3 provided an about:config variable to hide the annoying POS. Can I also have back the '''normal''' add-ons '''window'''.

所有回复 (4)

more options

Add code to userContent.css


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

(edited to fix the code)

由cor-el于修改

more options

That doesn't work for me. Doesn't block the Get Add-ons menu item in the Add-ons Tab from showing and it doesn't block the download and display of information from AMO.

more options

Sorry I forgot to test it.

It should be this code in userContent.css

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

Yep, that does it. I had to actually close Firefox to get rid of the information from AMO to go away, the "restart" button from ChromEdit Plus wouldn't do it completely after saving that to userContent.css.