Skip to content

How to remove/hide "This page is loaded from an extension." in firefox? #165

Answered by Gitoffthelawn
exLeute asked this question in Q&A
Discussion options

You must be logged in to vote

Yes, you can hide it in Firefox by using userChrome.css.

The power and flexibility of Firefox's userChrome.css (and userContent.css) are truly incredible.

Here is the code I wrote to do exactly this:

#identity-icon[tooltiptext="Loaded by extension: Bonjourr · Minimalist Startpage"] {
	list-style-image: url(chrome://global/skin/icons/heart.svg) !important;
}
#identity-icon-label[value="Extension (Bonjourr · Minimalist Startpage)"] {
	display: none;
}

This will replace all that bulky text with a nice little heart. Enjoy. ❤️

Replies: 3 comments 4 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
4 replies
@victrme
Comment options

@Gitoffthelawn
Comment options

@exLeute
Comment options

@exLeute
Comment options

Answer selected by victrme
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
4 participants