Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

How do I get rid of the "Get Add-ons" pane?

  • 4 απαντήσεις
  • 6 έχουν αυτό το πρόβλημα
  • 4 προβολές
  • Τελευταία απάντηση από 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.