Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

Hide the extensions indicator in the search bar.

  • 6 trả lời
  • 2 gặp vấn đề này
  • 9 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

Ok so let's start this, I was just gonna use the extension called tabliss on firefox to make the new tab thing look better but now it constantly says in the search bar, Extension and permission then the url.

Is there any way to remove this?

Ps: Check the image uploaded to understand what the problem is.

Ok so let's start this, I was just gonna use the extension called tabliss on firefox to make the new tab thing look better but now it constantly says in the search bar, Extension and permission then the url. Is there any way to remove this? Ps: Check the image uploaded to understand what the problem is.
Đính kèm ảnh chụp màn hình

Tất cả các câu trả lời (6)

more options

You need to provide a complete screenshot of the area your asking - cropping doesn't help others know where or what to look for.

more options

Not sure what u mean but that is the problem, the screenshot shows the issue which i want removed. I want a clean url bar not the extension thing before.

more options

Is this good?

Được chỉnh sửa bởi IXDYX vào

more options

Just provide a complete top of the browser to other can see what is running to know what else to look at?

more options

This is typical for extension pages, so you know which add-on is generating the page because the address itself is full of gibberish characters.

There is no built-in way to hide that information, but you can find solutions using the community-supported (unofficial) workaround of creating a userChrome.css file. If you are interested in going down that road, let us know.

For general reference, you can check out my site here: https://www.userchrome.org/

more options

It is likely because this is not a Firefox page, but a page created by an extension and the extension is overriding the default Firefox page.. On some built-in pages like about:preferences that show the URL you see the "Firefox" label and on others both the URL and the label are hidden because they think that it would be confusing or is unnecessary.

It is possible to hide the identity label via code in userChrome.css.


/* Hide Extension Name in the identity area unless
   hovered for half a second (updated for Fx80)
*/
#identity-box[pageproxystate="valid"].extensionPage #identity-icon-label {
  visibility: collapse !important;
  transition: visibility 500ms ease-in-out;
}
#identity-box[pageproxystate="valid"].extensionPage:hover #identity-icon-label {
  visibility: visible !important;
  transition: visibility 500ms ease-in-out 500ms;
}