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

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

Learn More

How can I remove the contentSearchSettingsButton from a new tab page?

  • 6 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 9 προβολές
  • Τελευταία απάντηση από Wesley Branton

more options

If I open a new tab (firefox default) and start typing in the search box, suggestions and the "Change Search settings" box opens underneath, pressing enter sometimes gives me the about:preferences#search page. I don't need or want this feature but it seems that the default pages are protected, I can't use Stylus to remove the feature which is new for the past few months.

If I open a new tab (firefox default) and start typing in the search box, suggestions and the "Change Search settings" box opens underneath, pressing enter sometimes gives me the about:preferences#search page. I don't need or want this feature but it seems that the default pages are protected, I can't use Stylus to remove the feature which is new for the past few months.

Επιλεγμένη λύση

Oh, you're right. Firefox does appear to treat the home page and new tab page differently. In that case, change the CSS code to include the new tab:

@-moz-document url("about:home"), url("about:newtab") {  
     #contentSearchSettingsButton {
          display: none !important;
     }
}

That should work for you.

Ανάγνωση απάντησης σε πλαίσιο 👍 1

Όλες οι απαντήσεις (6)

more options

Firefox pages are indeed protected pages, along with some other Mozilla-operated websites. This means that add-ons can't modify them like they can on other pages.

You would hide this element using a userContent.css file (which is similar to a userChrome.css except that it modifies the content of pages instead of the Firefox interface.

In your Firefox profile folder, you will need to go to the chrome folder (you make need to make it) and create a file called userContent.css with the following code in it:

@-moz-document url("about:home") {  
     #contentSearchSettingsButton {
          display: none !important;
     }
}

Once you save the file and restart Firefox, you should see the change.

Hope this helps.

more options

Wesley, That's perfect, does what I wanted. Thanks a lot.

more options

Actually, scrub that, it works on the home page but not on any new tab pages. FF treats a new tab as different to home page even though they are both set as Firefox Home (default). I can't see an equivalent to about:home for a new tab.

more options

Επιλεγμένη λύση

Oh, you're right. Firefox does appear to treat the home page and new tab page differently. In that case, change the CSS code to include the new tab:

@-moz-document url("about:home"), url("about:newtab") {  
     #contentSearchSettingsButton {
          display: none !important;
     }
}

That should work for you.

more options

No problem. Glad I could help.