Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

Dieses Thema wurde geschlossen und archiviert. Bitte stellen Sie eine neue Frage, wenn Sie Hilfe benötigen.

Remove "Bookmark this page" from address bar

  • 1 Antwort
  • 1 hat dieses Problem
  • 193 Aufrufe
  • Letzte Antwort von cor-el
  • Gesperrt

Firefox 89.0. How do you remove the "bookmark this page" star icon from the address bar?

Firefox 89.0. How do you remove the "bookmark this page" star icon from the address bar?

Alle Antworten (2)

You can no longer remove the star from the location bar via the right-click context menu or via customize mode in 89+. You now need to use code in userChrome.css to hide the star.

Add code to the userChrome.css file below the default @namespace line.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#star-button-box { display:none!important; }

In Firefox 69 and later you need to set this pref to true on the about:config page to enable userChrome.css and userContent.css in the chrome folder.

  • toolkit.legacyUserProfileCustomizations.stylesheets = true

This question has been locked because the original author has deleted their account. While you can no longer post new replies, the existing content remains available for reference.