Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
Clean up firefox's new tab page in private mode
By default, the new tab page in Firefox has a lot of clutter in private mode. How to remove all this clutter?
1 answer
Adding the following code block to one's userContent.css
file will remove the clutter:
/* removing clutter from new tab */
@-moz-document url("about:privatebrowsing") {
.promo {
display: none !important;
}
.info {
display: none !important;
}
.logo-and-wordmark {
display: none !important;
}
.search-inner-wrapper {
display: none !important;
}
}
(instructions how to find end edit the file are essentially the same as for userChrome.css
, which can be found in this fantastic answer https://powerusers.codidact.com/posts/285411/285412#answer-285412)
0 comment threads